Fix ADC overflow message

48kHz
Andy CA6JAU 2016-11-19 10:17:22 -03:00
parent c612813975
commit 6f0a12785a
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ void CSerialPort::getStatus()
reply[4U] = uint8_t(m_modemState);
reply[5U] = m_tx ? 0x01U : 0x00U;
reply[5U] |= m_dcd ? 0x02U : 0x00U;
reply[5U] |= m_dcd ? 0x40U : 0x00U;
bool adcOverflow;
bool dacOverflow;