From 6359d141d1c4d1abac75fcd7945a028a360b1070 Mon Sep 17 00:00:00 2001 From: Marcel Peterkau Date: Wed, 8 Oct 2025 22:34:53 +0200 Subject: [PATCH] enabled Serial Debug output by default --- Software/src/debugger.cpp | 2 +- Software/src/main.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Software/src/debugger.cpp b/Software/src/debugger.cpp index 71e1fa8..71e47ca 100644 --- a/Software/src/debugger.cpp +++ b/Software/src/debugger.cpp @@ -299,7 +299,7 @@ void processCmdDebug(String input) // Lifecycle / I/O void initDebugger() { - DebuggerStatus[dbg_Serial] = disabled; + DebuggerStatus[dbg_Serial] = enabled; DebuggerStatus[dbg_Webui] = disabled; Serial.setDebugOutput(false); } diff --git a/Software/src/main.cpp b/Software/src/main.cpp index 643ae39..7af5d1c 100644 --- a/Software/src/main.cpp +++ b/Software/src/main.cpp @@ -104,6 +104,7 @@ void setup() Wire.begin(); + initDebugger(); #ifdef FEATURE_ENABLE_WIFI_CLIENT // Configure WiFi settings for client mode if enabled