From 1d8e05aa24b26c8e553b0f638fee16dfb9124d07 Mon Sep 17 00:00:00 2001 From: ArgonStorm <48921605+ArgonStorm@users.noreply.github.com> Date: Sun, 2 Jun 2024 18:31:40 +0200 Subject: [PATCH] waiting on serial prevents the firmware from starting up on battery power --- src/devices/arduino/printable_serial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/arduino/printable_serial.cpp b/src/devices/arduino/printable_serial.cpp index f9ee624..ba17409 100644 --- a/src/devices/arduino/printable_serial.cpp +++ b/src/devices/arduino/printable_serial.cpp @@ -12,7 +12,7 @@ namespace sta mutex_{mutex} { Serial.begin(baud); - while (!Serial); + //while (!Serial); } void PrintableSerial::print(const char * str, size_t length)