From b12b23d02c783c0038c9cd3083f5b11198163493 Mon Sep 17 00:00:00 2001 From: Troy <5659019+troyhacks@users.noreply.github.com> Date: Wed, 21 Aug 2024 13:59:03 -0400 Subject: [PATCH] Boot log clarification. --- wled00/wled.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 688d5ec1..0922ec14 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -504,8 +504,8 @@ void WLED::setup() USER_PRINTF(" WLEDMM_%s %s, build %s.\n", versionString, releaseString, TOSTRING(VERSION)); // WLEDMM specific #endif #ifdef ARDUINO_ARCH_ESP32 - const esp_partition_t *boot_partition = esp_ota_get_running_partition(); - USER_PRINTF("Booted 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); + 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); #endif #ifdef ARDUINO_ARCH_ESP32 DEBUG_PRINT(F("esp32 "));