mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
40 lines
932 B
Plaintext
40 lines
932 B
Plaintext
App(
|
|
appid="subghz",
|
|
name="SubGHz",
|
|
apptype=FlipperAppType.APP,
|
|
targets=["f7"],
|
|
entry_point="subghz_app",
|
|
icon="A_Sub1ghz_14",
|
|
stack_size=3 * 1024,
|
|
order=10,
|
|
# Sources separation breaks linking with subghz on internal, commented for now
|
|
# sources=[
|
|
# "*.c",
|
|
# "!subghz_cli.c",
|
|
# "!helpers/subghz_chat.c",
|
|
# "!subghz_extended_freq.c",
|
|
# ],
|
|
resources="resources",
|
|
fap_libs=["hwdrivers"],
|
|
fap_icon="icon.png",
|
|
fap_category="Sub-GHz",
|
|
)
|
|
|
|
App(
|
|
appid="subghz_start",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="subghz_on_system_start",
|
|
# sources=["subghz_cli.c", "helpers/subghz_chat.c"],
|
|
order=40,
|
|
)
|
|
|
|
App(
|
|
appid="subghz_load_extended_settings",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="subghz_extended_freq",
|
|
# sources=["subghz_extended_freq.c"],
|
|
order=650,
|
|
)
|