Fix the self-test LEDs.

This commit is contained in:
Jonathan Naylor 2020-09-01 13:27:29 +01:00
parent fda1e3dcf4
commit 2509ab5ba1
1 changed files with 8 additions and 1 deletions

9
IO.cpp
View File

@ -158,13 +158,20 @@ void CIO::selfTest()
} }
#if defined(MODE_LEDS) #if defined(MODE_LEDS)
setDStarInt(true); setDStarInt(false);
setDMRInt(false); setDMRInt(false);
setYSFInt(false); setYSFInt(false);
setP25Int(false); setP25Int(false);
#if !defined(USE_ALTERNATE_NXDN_LEDS)
setNXDNInt(false); setNXDNInt(false);
#endif
#if !defined(USE_ALTERNATE_POCSAG_LEDS)
setPOCSAGInt(false); setPOCSAGInt(false);
#endif
#if !defined(USE_ALTERNATE_FM_LEDS)
setFMInt(false); setFMInt(false);
#endif
setDStarInt(true);
delayInt(250); delayInt(250);
setDMRInt(true); setDMRInt(true);