Add CD LED functionality to MMDVMHost

This commit is contained in:
phl0 2016-11-17 11:48:42 +01:00
parent cb35888d0e
commit 8373dc0b8a
No known key found for this signature in database
GPG key ID: 48EA1E640798CA9A
5 changed files with 38 additions and 2 deletions

View file

@ -452,6 +452,8 @@ int CMMDVMHost::run()
if (m_ump != NULL) {
bool tx = m_modem->hasTX();
m_ump->setTX(tx);
bool cd = m_modem->hasCD();
m_ump->setCD(cd);
}
unsigned char data[200U];