updated firmware code

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2026-03-23 16:23:48 +01:00
parent 83752af6aa
commit 39700aec5b
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ menu "API Server Configuration"
config API_SERVER_STATIC_FILES_PATH
string "Static Files Path"
default "/spiffs/www"
default "/spiffs/website"
help
Base path for serving static web files.
+1 -1
View File
@@ -297,7 +297,7 @@ void app_task(void *args)
xTaskCreatePinnedToCore(u8g2_mqtt_task, "mqtt_disp", 4096, nullptr, 5, nullptr, tskNO_AFFINITY);
// Create display update task with lower priority (non-blocking main loop)
xTaskCreatePinnedToCore(display_update_task, "display_update", 2048, nullptr, tskIDLE_PRIORITY + 1,
xTaskCreatePinnedToCore(display_update_task, "display_update", 4096, nullptr, tskIDLE_PRIORITY + 1,
&display_update_task_handle, CONFIG_FREERTOS_NUMBER_OF_CORES - 1);
auto oldTime = esp_timer_get_time();
+1 -2
View File
@@ -4,6 +4,5 @@ otadata , data , ota , , 8k ,
phy_init , data , phy , , 4k ,
ota_0 , app , ota_0 , 0x10000 , 1536K ,
ota_1 , app , ota_1 , , 1536K ,
storage , data , spiffs , , 256K ,
coredump , data , coredump , , 576k ,
storage , data , spiffs , , 832K ,
fctry , data , nvs , , 24k ,
1 # Name Type SubType Offset Size Flags
4 phy_init data phy 4k
5 ota_0 app ota_0 0x10000 1536K
6 ota_1 app ota_1 1536K
7 storage data spiffs 256K 832K
coredump data coredump 576k
8 fctry data nvs 24k
+1 -1
View File
@@ -28,7 +28,7 @@ CONFIG_DIAG_ENABLE_NETWORK_VARIABLES=y
# Core dump
CONFIG_ESP32_ENABLE_COREDUMP=y
CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH=y
CONFIG_ESP32_ENABLE_COREDUMP_TO_UART=y
CONFIG_ESP32_COREDUMP_DATA_FORMAT_ELF=y
CONFIG_ESP32_COREDUMP_CHECKSUM_CRC32=y
CONFIG_ESP32_CORE_DUMP_MAX_TASKS_NUM=64