mirror of https://github.com/g4klx/MMDVM.git
Fix ADC overflow message
This commit is contained in:
parent
c612813975
commit
6f0a12785a
|
@ -132,7 +132,7 @@ void CSerialPort::getStatus()
|
||||||
reply[4U] = uint8_t(m_modemState);
|
reply[4U] = uint8_t(m_modemState);
|
||||||
|
|
||||||
reply[5U] = m_tx ? 0x01U : 0x00U;
|
reply[5U] = m_tx ? 0x01U : 0x00U;
|
||||||
reply[5U] |= m_dcd ? 0x02U : 0x00U;
|
reply[5U] |= m_dcd ? 0x40U : 0x00U;
|
||||||
|
|
||||||
bool adcOverflow;
|
bool adcOverflow;
|
||||||
bool dacOverflow;
|
bool dacOverflow;
|
||||||
|
|
Loading…
Reference in New Issue