mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-05 14:35:31 +00:00
Improve timing within the protocol engines.
This commit is contained in:
parent
1d4443eafd
commit
2cfb1f458e
9 changed files with 36 additions and 14 deletions
|
|
@ -94,7 +94,7 @@ unsigned int CDMRControl::readModemSlot2(unsigned char *data)
|
|||
return m_slot2.readModem(data);
|
||||
}
|
||||
|
||||
void CDMRControl::clock(unsigned int ms)
|
||||
void CDMRControl::clock()
|
||||
{
|
||||
if (m_network != NULL) {
|
||||
CDMRData data;
|
||||
|
|
@ -109,6 +109,6 @@ void CDMRControl::clock(unsigned int ms)
|
|||
}
|
||||
}
|
||||
|
||||
m_slot1.clock(ms);
|
||||
m_slot2.clock(ms);
|
||||
m_slot1.clock();
|
||||
m_slot2.clock();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue