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

37 lines
712 B
Text
Raw Normal View History

App(
appid="subghz",
name="Sub-GHz",
apptype=FlipperAppType.APP,
targets=["f7"],
entry_point="subghz_app",
cdefines=["APP_SUBGHZ"],
requires=[
"gui",
"cli",
"dialogs",
],
2023-05-18 07:59:08 +00:00
provides=[
"subghz_start",
"subghz_load_dangerous_settings",
],
icon="A_Sub1ghz_14",
stack_size=3 * 1024,
order=10,
)
App(
appid="subghz_start",
apptype=FlipperAppType.STARTUP,
entry_point="subghz_on_system_start",
requires=["subghz"],
order=40,
)
2023-05-18 07:59:08 +00:00
App(
appid="subghz_load_dangerous_settings",
apptype=FlipperAppType.STARTUP,
entry_point="subghz_dangerous_freq",
2023-05-19 00:31:46 +00:00
requires=["storage", "subghz"],
2023-05-19 01:51:25 +00:00
order=650,
2023-05-18 07:59:08 +00:00
)