unleashed-firmware/applications/main/subghz/application.fam

42 lines
849 B
Plaintext
Raw Normal View History

App(
appid="subghz",
name="Sub-GHz",
apptype=FlipperAppType.APP,
targets=["f7"],
cdefines=["APP_SUBGHZ"],
entry_point="subghz_app",
requires=[
"gui",
"cli",
"dialogs",
],
2023-05-18 10:59:08 +03:00
provides=[
"subghz_start",
"subghz_load_dangerous_settings",
],
icon="A_Sub1ghz_14",
stack_size=3 * 1024,
2023-07-17 22:12:34 +03:00
order=1,
2023-11-08 11:41:14 +03:00
resources="resources",
fap_libs=["assets", "hwdrivers"],
fap_icon="icon.png",
fap_category="Sub-GHz",
)
App(
appid="subghz_start",
targets=["f7"],
apptype=FlipperAppType.STARTUP,
entry_point="subghz_on_system_start",
2023-11-08 10:38:22 +03:00
requires=["subghz"],
order=40,
)
2023-05-18 10:59:08 +03:00
App(
appid="subghz_load_dangerous_settings",
apptype=FlipperAppType.STARTUP,
entry_point="subghz_dangerous_freq",
2023-05-19 03:31:46 +03:00
requires=["storage", "subghz"],
2023-05-19 04:51:25 +03:00
order=650,
2023-05-18 10:59:08 +03:00
)