mirror of https://github.com/g4klx/MMDVM.git
A cleaner lockout mechanism on receive.
This commit is contained in:
parent
28c065ffcb
commit
6bf70a9595
16
IO.cpp
16
IO.cpp
|
@ -253,19 +253,6 @@ void CIO::process()
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_lockout) {
|
|
||||||
// Drain the receive queue
|
|
||||||
if (m_rxBuffer.getData() >= RX_BLOCK_SIZE) {
|
|
||||||
for (uint16_t i = 0U; i < RX_BLOCK_SIZE; i++) {
|
|
||||||
uint16_t sample;
|
|
||||||
uint8_t control;
|
|
||||||
m_rxBuffer.get(sample, control);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_rxBuffer.getData() >= RX_BLOCK_SIZE) {
|
if (m_rxBuffer.getData() >= RX_BLOCK_SIZE) {
|
||||||
q15_t samples[RX_BLOCK_SIZE];
|
q15_t samples[RX_BLOCK_SIZE];
|
||||||
uint8_t control[RX_BLOCK_SIZE];
|
uint8_t control[RX_BLOCK_SIZE];
|
||||||
|
@ -284,6 +271,9 @@ void CIO::process()
|
||||||
samples[i] = q15_t(__SSAT((res2 >> 15), 16));
|
samples[i] = q15_t(__SSAT((res2 >> 15), 16));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (m_lockout)
|
||||||
|
return;
|
||||||
|
|
||||||
if (m_modemState == STATE_IDLE) {
|
if (m_modemState == STATE_IDLE) {
|
||||||
if (m_dstarEnable) {
|
if (m_dstarEnable) {
|
||||||
q15_t GMSKVals[RX_BLOCK_SIZE];
|
q15_t GMSKVals[RX_BLOCK_SIZE];
|
||||||
|
|
Loading…
Reference in New Issue