Adding LEDs selftest at start-up

This commit is contained in:
Andy CA6JAU 2017-08-28 00:43:24 -03:00
parent cce2cc3cfc
commit 70e1fd4264
5 changed files with 66 additions and 1 deletions

View file

@ -210,4 +210,9 @@ void CIO::setP25Int(bool on)
digitalWrite(PIN_P25, on ? HIGH : LOW);
}
#endif
void CIO::delayInt(unsigned int dly)
{
delay(dly);
}
#endif