mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-04-06 06:55:05 +00:00
Fix ADC overflow message
This commit is contained in:
parent
c612813975
commit
6f0a12785a
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue