From aa38c113e3942a6c04a39302797830910deaedcd Mon Sep 17 00:00:00 2001 From: Troy <5659019+troyhacks@users.noreply.github.com> Date: Wed, 21 Aug 2024 14:01:11 -0400 Subject: [PATCH] More boot log clarity --- wled00/wled.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 0922ec14..9d54631f 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -505,7 +505,7 @@ void WLED::setup() #endif #ifdef ARDUINO_ARCH_ESP32 const esp_partition_t *running_partition = esp_ota_get_running_partition(); - USER_PRINTF("Running from: %s which is %u bytes and type %u subtype %u at address %x\n",boot_partition->label,boot_partition->size,boot_partition->type,boot_partition->subtype,boot_partition->address); + USER_PRINTF("Running from: %s which is %u bytes and type %u subtype %u at address %x\n",running_partition->label,running_partition->size,running_partition->type,running_partition->subtype,running_partition->address); #endif #ifdef ARDUINO_ARCH_ESP32 DEBUG_PRINT(F("esp32 "));