From d1ac21188f986a42f23bf77ca74ff0c2cd95a0f4 Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Mon, 21 May 2018 21:46:33 -0400 Subject: [PATCH] Include service LED in QUIET_MODE_LEDS option --- IO.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IO.cpp b/IO.cpp index f9d1a0c..387b5e4 100644 --- a/IO.cpp +++ b/IO.cpp @@ -114,11 +114,15 @@ void CIO::process() m_watchdog = 0U; } +#if defined(QUIET_MODE_LEDS) + LED_pin(HIGH); +#else if (m_ledCount >= 24000U) { m_ledCount = 0U; m_ledValue = !m_ledValue; LED_pin(m_ledValue); } +#endif } else { if (m_ledCount >= 240000U) { m_ledCount = 0U;