mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-11 19:33:30 -07:00
Sub-GHz: Temporarily lower reserved memory
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user