From c765e4b7c293c337cda47c0c02723cadc87775b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fiedler?= Date: Wed, 25 Feb 2026 20:33:09 +0100 Subject: [PATCH] Remove redundant Serial.println calls in BLE and main interfaces for cleaner logging --- src/BLE_Interface.cpp | 1 - src/main.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/BLE_Interface.cpp b/src/BLE_Interface.cpp index 762668c..cb488cc 100644 --- a/src/BLE_Interface.cpp +++ b/src/BLE_Interface.cpp @@ -28,7 +28,6 @@ portMUX_TYPE g_bleQueueMux = portMUX_INITIALIZER_UNLOCKED; void logBleDiag(const String &message) { Log(message); - Serial.println(message); } void buildBleDeviceName(char *nameBuffer, size_t bufferSize) diff --git a/src/main.cpp b/src/main.cpp index affb55b..4156b8b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -129,7 +129,6 @@ void protocolWrite(const String &message) void setup() { Serial.begin(115200); - Serial.println("Starting..."); Log("Starting..."); makeComInterface(); initHardware();