mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
41 lines
849 B
Text
41 lines
849 B
Text
App(
|
|
appid="subghz",
|
|
name="Sub-GHz",
|
|
apptype=FlipperAppType.APP,
|
|
targets=["f7"],
|
|
cdefines=["APP_SUBGHZ"],
|
|
entry_point="subghz_app",
|
|
requires=[
|
|
"gui",
|
|
"cli",
|
|
"dialogs",
|
|
],
|
|
provides=[
|
|
"subghz_start",
|
|
"subghz_load_dangerous_settings",
|
|
],
|
|
icon="A_Sub1ghz_14",
|
|
stack_size=3 * 1024,
|
|
order=1,
|
|
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",
|
|
requires=["subghz"],
|
|
order=40,
|
|
)
|
|
|
|
App(
|
|
appid="subghz_load_dangerous_settings",
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="subghz_dangerous_freq",
|
|
requires=["storage", "subghz"],
|
|
order=650,
|
|
)
|