From 928c40813d24f605014fa045b46fe63b3b7e1060 Mon Sep 17 00:00:00 2001 From: Scott Allen Date: Sat, 7 Apr 2018 07:28:15 -0400 Subject: [PATCH] Make sure TX and RX LEDs are off in mainNoUSB() --- src/Arduboy2Core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Arduboy2Core.cpp b/src/Arduboy2Core.cpp index 07c6b69..0635cd6 100644 --- a/src/Arduboy2Core.cpp +++ b/src/Arduboy2Core.cpp @@ -592,6 +592,8 @@ void Arduboy2Core::mainNoUSB() // This would normally be done in the USB code that uses the TX and RX LEDs TX_RX_LED_INIT; + TXLED0; + RXLED0; // Set the DOWN button pin for INPUT_PULLUP bitSet(DOWN_BUTTON_PORT, DOWN_BUTTON_BIT);