From 172911fc0a3f0a68fe14f56b8d065dbe57a2abac Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Sun, 30 Oct 2022 14:06:44 +0100 Subject: [PATCH] adding flash speed to debug output small change --- wled00/wled.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 3bd747e346..54bef3686c 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -352,11 +352,12 @@ void WLED::setup() // missing: Octal modes case FM_QIO: DEBUG_PRINT(F(" (QIO)")); break; case FM_QOUT: DEBUG_PRINT(F(" (QOUT)"));break; - case FM_DIO: DEBUG_PRINT(F(" (DIO)")); break; - case FM_DOUT: DEBUG_PRINT(F(" (DOUT)"));break; + case FM_DIO: DEBUG_PRINT(F(" (DIO?)")); break; + case FM_DOUT: DEBUG_PRINT(F(" (DOUT?)"));break; default: break; } #endif + DEBUG_PRINT(F(", ")); DEBUG_PRINT(int(ESP.getFlashChipSpeed()/1000000)); DEBUG_PRINTLN(F("MHz")); // WLEDSR end #else DEBUG_PRINT(F("esp8266 "));