Skip to content

Commit

Permalink
Latest Release RM0210-1603-0.97.2-2707a31 on PATREON - SUBG OVERHAUL PT2
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Feb 12, 2024
1 parent 4f3f47d commit 3e5e187
Show file tree
Hide file tree
Showing 53 changed files with 2,819 additions and 899 deletions.
39 changes: 32 additions & 7 deletions applications/main/subghz/application.fam
Expand Up @@ -3,25 +3,50 @@ App(
name="Sub-GHz",
apptype=FlipperAppType.APP,
targets=["f7"],
cdefines=["APP_SUBGHZ"],
entry_point="subghz_app",
provides=[
"subghz_start",
],
icon="A_Sub1ghz_14",
stack_size=3 * 1024,
order=1,
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=["assets", "hwdrivers"],
fap_libs=["hwdrivers"],
fap_icon="icon.png",
fap_category="Sub-GHz",
# fap_icon_assets="images",
sdk_headers=["subghz_fap.h"],
)

App(
appid="subghz_fap",
name="SubGHz",
apptype=FlipperAppType.EXTERNAL,
entry_point="subghz_fap",
stack_size=3 * 1024,
sources=["subghz_fap.c"],
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,
)

0 comments on commit 3e5e187

Please sign in to comment.