mirror of
https://github.com/juribeparada/MMDVM_HS.git
synced 2025-12-06 07:12:08 +01:00
Fix two compiler warnings about indentiation
This commit is contained in:
parent
0400ab4019
commit
97939376a3
|
|
@ -798,10 +798,11 @@ void CSerialPort::process()
|
||||||
|
|
||||||
case MMDVM_POCSAG_DATA:
|
case MMDVM_POCSAG_DATA:
|
||||||
if (m_pocsagEnable) {
|
if (m_pocsagEnable) {
|
||||||
if (m_modemState == STATE_IDLE || m_modemState == STATE_POCSAG)
|
if (m_modemState == STATE_IDLE || m_modemState == STATE_POCSAG) {
|
||||||
m_pocsag_state = true;
|
m_pocsag_state = true;
|
||||||
err = pocsagTX.writeData(m_buffer + 3U, m_len - 3U);
|
err = pocsagTX.writeData(m_buffer + 3U, m_len - 3U);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (err == 0U) {
|
if (err == 0U) {
|
||||||
if (m_modemState == STATE_IDLE)
|
if (m_modemState == STATE_IDLE)
|
||||||
setMode(STATE_POCSAG);
|
setMode(STATE_POCSAG);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue