mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 23:45:49 +08:00
Detect DAC overflows.
This commit is contained in:
@@ -160,7 +160,7 @@ void CYSFNetwork::clock(unsigned int ms)
|
||||
return;
|
||||
}
|
||||
|
||||
bool end = buffer[34U] == 0x01U;
|
||||
bool end = (buffer[34U] & 0x01U) == 0x01U;
|
||||
if (end)
|
||||
::memset(m_tag, ' ', YSF_CALLSIGN_LENGTH);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user