From: Mark Qvist Date: Wed, 11 Jan 2023 08:42:11 +0000 (+0100) Subject: Cleanup X-Git-Url: https://git.tnoah.ca/?a=commitdiff_plain;h=5c858c4f7ae4a8e37cd6bedc7c27e3bd0ea5555d;p=lora-radio.git Cleanup --- diff --git a/RNode_Firmware.ino b/RNode_Firmware.ino index 3810675..8ea6faa 100644 --- a/RNode_Firmware.ino +++ b/RNode_Firmware.ino @@ -109,7 +109,11 @@ void setup() { #endif if (console_active) { - console_start(); + #if HAS_CONSOLE + console_start(); + #else + kiss_indicate_reset(); + #endif } else { kiss_indicate_reset(); } @@ -987,7 +991,9 @@ void loop() { } else { if (hw_ready) { if (console_active) { - console_loop(); + #if HAS_CONSOLE + console_loop(); + #endif } else { led_indicate_standby(); }