mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-06 15:04:18 +00:00
Detect DAC overflows.
This commit is contained in:
parent
ee93e4ce43
commit
89fa0a0c8d
3 changed files with 13 additions and 19 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue