Sub-GHz: Temporarily lower reserved memory

This commit is contained in:
WillyJL
2026-04-19 23:53:23 +02:00
parent 0ac7533a23
commit f312aa79bc
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
### Known Issues:
- Sub-GHz app is now external due to running out of space in flash, but it uses almost all available RAM. This means that:
- qFlipper / Mobile App cannot be used together with Sub-GHz app for now
- Only 20-30 signals can be kept at a time in receive history while in Read mode
- Opening Sub-GHz after using a few other apps may result in an out of memory warning, simply reboot and it will work again
### Added:
- Apps:
- Games: Checkers (by @H4W9)
+2 -1
View File
@@ -5,7 +5,8 @@
#include <furi.h>
#define SUBGHZ_HISTORY_MAX 65535 // uint16_t index max, ram limit below
#define SUBGHZ_HISTORY_FREE_HEAP (23624 * (1 - MIN(rpc_get_sessions_count(instance->rpc), 1U)))
// #define SUBGHZ_HISTORY_FREE_HEAP (23624 * (1 - MIN(rpc_get_sessions_count(instance->rpc), 1U)))
#define SUBGHZ_HISTORY_FREE_HEAP (2048)
#define TAG "SubGhzHistory"