1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

Move subghz into internal memory

we have no free ram :((((
This commit is contained in:
MX
2023-07-17 20:37:30 +03:00
parent 2c8350818c
commit 6870304a73

View File

@@ -1,8 +1,9 @@
App(
appid="subghz",
name="Sub-GHz",
apptype=FlipperAppType.MENUEXTERNAL,
apptype=FlipperAppType.APP,
targets=["f7"],
cdefines=["APP_SUBGHZ"],
entry_point="subghz_app",
requires=[
"gui",
@@ -26,6 +27,7 @@ App(
targets=["f7"],
apptype=FlipperAppType.STARTUP,
entry_point="subghz_on_system_start",
requires=["subghz"],
order=40,
)