Revert "other changes yet not working"

This reverts commit 7848e6eab8.
This commit is contained in:
RogueMaster
2022-11-02 19:23:51 -04:00
parent 7848e6eab8
commit cd91aff48d
6 changed files with 12 additions and 18 deletions

View File

@@ -1,13 +1,13 @@
App( App(
appid="gpio", appid="gpio",
name="GPIO", name="GPIO",
apptype=FlipperAppType.EXTERNAL, apptype=FlipperAppType.APP,
entry_point="gpio_app", entry_point="gpio_app",
cdefines=["APP_GPIO"], cdefines=["APP_GPIO"],
requires=["gui"], requires=["gui"],
stack_size=1 * 1024, stack_size=1 * 1024,
# icon="A_GPIO_14", icon="A_GPIO_14",
order=50, order=50,
fap_icon="gpioIcon.png", # fap_icon="gpioIcon.png",
fap_category="Main", # fap_category="Main",
) )

View File

@@ -1,7 +1,7 @@
App( App(
appid="infrared", appid="infrared",
name="Infrared", name="Infrared",
apptype=FlipperAppType.EXTERNAL, apptype=FlipperAppType.APP,
entry_point="infrared_app", entry_point="infrared_app",
cdefines=["APP_INFRARED"], cdefines=["APP_INFRARED"],
requires=[ requires=[
@@ -9,11 +9,11 @@ App(
"dialogs", "dialogs",
], ],
provides=["infrared_start"], provides=["infrared_start"],
# icon="A_Infrared_14", icon="A_Infrared_14",
stack_size=3 * 1024, stack_size=3 * 1024,
order=40, order=40,
fap_icon="irIcon.png", # fap_icon="irIcon.png",
fap_category="Main", # fap_category="Main",
) )
App( App(

View File

@@ -1,7 +1,7 @@
App( App(
appid="lfrfid", appid="lfrfid",
name="125 kHz RFID", name="125 kHz RFID",
apptype=FlipperAppType.EXTERNAL, apptype=FlipperAppType.APP,
entry_point="lfrfid_app", entry_point="lfrfid_app",
cdefines=["APP_LF_RFID"], cdefines=["APP_LF_RFID"],
requires=[ requires=[
@@ -11,12 +11,9 @@ App(
provides=[ provides=[
"lfrfid_start", "lfrfid_start",
], ],
# icon="A_125khz_14", icon="A_125khz_14",
stack_size=2 * 1024, stack_size=2 * 1024,
order=20, order=20,
fap_category="Main",
fap_icon="gpioIcon.png",
) )
App( App(

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -1,7 +1,7 @@
App( App(
appid="subghz", appid="subghz",
name="Sub-GHz", name="Sub-GHz",
apptype=FlipperAppType.EXTERNAL, apptype=FlipperAppType.APP,
entry_point="subghz_app", entry_point="subghz_app",
cdefines=["APP_SUBGHZ"], cdefines=["APP_SUBGHZ"],
requires=[ requires=[
@@ -10,12 +10,9 @@ App(
"dialogs", "dialogs",
], ],
provides=["subghz_start"], provides=["subghz_start"],
# icon="A_Sub1ghz_14", icon="A_Sub1ghz_14",
stack_size=2 * 1024, stack_size=2 * 1024,
order=10, order=10,
fap_category="Main",
fap_icon="gpioIcon.png",
) )
App( App(

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB