1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 20:49:49 +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( App(
appid="subghz", appid="subghz",
name="Sub-GHz", name="Sub-GHz",
apptype=FlipperAppType.MENUEXTERNAL, apptype=FlipperAppType.APP,
targets=["f7"], targets=["f7"],
cdefines=["APP_SUBGHZ"],
entry_point="subghz_app", entry_point="subghz_app",
requires=[ requires=[
"gui", "gui",
@@ -26,6 +27,7 @@ App(
targets=["f7"], targets=["f7"],
apptype=FlipperAppType.STARTUP, apptype=FlipperAppType.STARTUP,
entry_point="subghz_on_system_start", entry_point="subghz_on_system_start",
requires=["subghz"],
order=40, order=40,
) )