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

4
IO.h
View file

@ -53,6 +53,8 @@ public:
void resetWatchdog();
uint32_t getWatchdog();
void selfTest();
private:
bool m_started;
@ -107,6 +109,8 @@ private:
void setDMRInt(bool on);
void setYSFInt(bool on);
void setP25Int(bool on);
void delayInt(unsigned int dly);
};
#endif