added subghz-playlist to main application menu

This commit is contained in:
jbohack
2023-01-05 13:06:32 -05:00
parent e0d1fa4b34
commit 4f19b0f559
19 changed files with 26 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ App(
# "lfrfid_loader", # "lfrfid_loader",
"nfc", "nfc",
"subghz", "subghz",
"sub_playlist_loader",
#"bad_usb", #"bad_usb",
"bad_usb_loader", "bad_usb_loader",
# "u2f", # "u2f",

View File

@@ -6,8 +6,8 @@ App(
cdefines=["APP_PLAYLIST"], cdefines=["APP_PLAYLIST"],
requires=["storage", "gui", "dialogs", "subghz"], requires=["storage", "gui", "dialogs", "subghz"],
stack_size=2 * 1024, stack_size=2 * 1024,
order=200, order=12,
fap_icon="playlist_10px.png", fap_icon="playlist_10px.png",
fap_category="Tools", fap_category="Main",
fap_icon_assets="images", fap_icon_assets="images",
) )

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 299 B

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

View File

@@ -0,0 +1,13 @@
App(
appid="sub_playlist_loader",
name="Sub-GHz Playlist",
apptype=FlipperAppType.APP,
entry_point="sub_playlist_loader_app",
requires=[
"gui",
],
stack_size=int(2 * 1024),
icon="A_Sub_Playlist_14",
order=12,
link="/ext/apps/Main/SubGHz_Playlist.fap",
)

View File

@@ -0,0 +1,9 @@
#include <applications/services/loader/loader_i.h>
#define TAG "sub_playlist_loader_app"
int32_t sub_playlist_loader_app(void* p) {
UNUSED(p);
return 0;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

View File

@@ -0,0 +1 @@
1