From 2cf729031f608947601187238be05d44fda20a66 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Sun, 19 Sep 2021 12:16:44 +0200 Subject: [PATCH] Fix for startup when DEBUG is disabled. --- MicroDexed.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MicroDexed.ino b/MicroDexed.ino index cf28bcb..4c851ad 100644 --- a/MicroDexed.ino +++ b/MicroDexed.ino @@ -374,6 +374,8 @@ void setup() { #ifdef DEBUG Serial.begin(SERIAL_SPEED); +#else + delay(50); // seems to be needed when no serial debugging is enabled #endif #ifdef DISPLAY_LCD_SPI