Fixes
This commit is contained in:
parent
3db65ce8e8
commit
519b095d16
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -8,7 +8,7 @@ add_definitions(
|
||||
-Wno-unknown-pragmas
|
||||
-DMASK_VERSION=0x07B0
|
||||
-DKNX_NO_AUTOMATIC_GLOBAL_INSTANCE
|
||||
-DKNX_FLASH_SIZE=16384
|
||||
-DKNX_FLASH_SIZE=32768
|
||||
#-DKNX_NO_PRINT
|
||||
#-Wno-stringop-truncation
|
||||
)
|
||||
|
||||
@ -24,10 +24,10 @@ static void widget_manager_timer_cb(lv_timer_t* timer)
|
||||
{
|
||||
(void)timer;
|
||||
// Debug: Log every 100th call to verify timer is running
|
||||
static uint32_t callCount = 0;
|
||||
/*static uint32_t callCount = 0;
|
||||
if (++callCount % 10 == 0) {
|
||||
ESP_LOGI("Gui", "Timer tick %lu", callCount);
|
||||
}
|
||||
}*/
|
||||
WidgetManager::instance().loop();
|
||||
}
|
||||
|
||||
|
||||
@ -744,13 +744,13 @@ void WidgetManager::enterStandby() {
|
||||
}
|
||||
|
||||
void WidgetManager::loop() {
|
||||
static uint32_t loopCount = 0;
|
||||
/*static uint32_t loopCount = 0;
|
||||
loopCount++;
|
||||
if (loopCount % 40 == 0) {
|
||||
ESP_LOGI(TAG, "Heap: %lu | Internal: %lu",
|
||||
esp_get_free_heap_size(),
|
||||
heap_caps_get_free_size(MALLOC_CAP_INTERNAL));
|
||||
}
|
||||
}*/
|
||||
|
||||
bool didUiNav = false;
|
||||
if (navPending_) {
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, 0x10000, 0x300000,
|
||||
nvs, data, nvs, 0x9000, 0x20000,
|
||||
phy_init, data, phy, 0x29000, 0x1000,
|
||||
factory, app, factory, 0x30000, 0x2D0000,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user