mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-22 23:26:45 -08:00
Fix v6 status bar ram refresh
This commit is contained in:
@@ -989,7 +989,7 @@ void MenuFunctions::updateStatusBar()
|
|||||||
|
|
||||||
// RAM Stuff
|
// RAM Stuff
|
||||||
wifi_scan_obj.freeRAM();
|
wifi_scan_obj.freeRAM();
|
||||||
if (wifi_scan_obj.free_ram != wifi_scan_obj.old_free_ram) {
|
if ((wifi_scan_obj.free_ram != wifi_scan_obj.old_free_ram) || (status_changed)) {
|
||||||
wifi_scan_obj.old_free_ram = wifi_scan_obj.free_ram;
|
wifi_scan_obj.old_free_ram = wifi_scan_obj.free_ram;
|
||||||
display_obj.tft.fillRect(100, 0, 60, STATUS_BAR_WIDTH, STATUSBAR_COLOR);
|
display_obj.tft.fillRect(100, 0, 60, STATUS_BAR_WIDTH, STATUSBAR_COLOR);
|
||||||
#ifdef HAS_ILI9341
|
#ifdef HAS_ILI9341
|
||||||
|
|||||||
@@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
//// BOARD TARGETS
|
//// BOARD TARGETS
|
||||||
//#define MARAUDER_M5STICKC
|
//#define MARAUDER_M5STICKC
|
||||||
#define MARAUDER_MINI
|
//#define MARAUDER_MINI
|
||||||
//#define MARAUDER_V4
|
//#define MARAUDER_V4
|
||||||
//#define MARAUDER_V6
|
#define MARAUDER_V6
|
||||||
//#define MARAUDER_V6_1
|
//#define MARAUDER_V6_1
|
||||||
//#define MARAUDER_KIT
|
//#define MARAUDER_KIT
|
||||||
//#define GENERIC_ESP32
|
//#define GENERIC_ESP32
|
||||||
|
|||||||
Reference in New Issue
Block a user