Add carrier detect LED to MMDVM firmware

This commit is contained in:
phl0 2016-11-17 11:29:43 +01:00
parent d3eb7dbd4c
commit e3f35e0875
No known key found for this signature in database
GPG key ID: 48EA1E640798CA9A
3 changed files with 14 additions and 2 deletions

5
IO.cpp
View file

@ -312,6 +312,11 @@ void CIO::setDecode(bool dcd)
m_dcd = dcd;
}
bool CIO::getDecode()
{
return m_dcd;
}
void CIO::setADCDetection(bool detect)
{
m_detect = detect;