From 2509ab5ba1efd082c9d76ba473cad3f2e8fb6a7a Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 1 Sep 2020 13:27:29 +0100 Subject: [PATCH] Fix the self-test LEDs. --- IO.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/IO.cpp b/IO.cpp index ab003f2..5e10feb 100644 --- a/IO.cpp +++ b/IO.cpp @@ -158,13 +158,20 @@ void CIO::selfTest() } #if defined(MODE_LEDS) - setDStarInt(true); + setDStarInt(false); setDMRInt(false); setYSFInt(false); setP25Int(false); +#if !defined(USE_ALTERNATE_NXDN_LEDS) setNXDNInt(false); +#endif +#if !defined(USE_ALTERNATE_POCSAG_LEDS) setPOCSAGInt(false); +#endif +#if !defined(USE_ALTERNATE_FM_LEDS) setFMInt(false); +#endif + setDStarInt(true); delayInt(250); setDMRInt(true);