Remove redundant Serial.println calls in BLE and main interfaces for cleaner logging

This commit is contained in:
André Fiedler
2026-02-25 20:33:09 +01:00
parent a1ffcb08ca
commit c765e4b7c2
2 changed files with 0 additions and 2 deletions

View File

@@ -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)

View File

@@ -129,7 +129,6 @@ void protocolWrite(const String &message)
void setup()
{
Serial.begin(115200);
Serial.println("Starting...");
Log("Starting...");
makeComInterface();
initHardware();