Network clock changes.

This commit is contained in:
Jonathan Naylor 2016-01-26 19:56:10 +00:00
parent 50fb9e846c
commit 72fcd64942
2 changed files with 4 additions and 2 deletions

View file

@ -93,8 +93,6 @@ void CDMRControl::clock(unsigned int ms)
default: LogError("Invalid slot no %u", slotNo); break;
}
}
m_network->clock(ms);
}
m_slot1.clock(ms);

View file

@ -368,6 +368,10 @@ int CMMDVMHost::run()
dmr->clock(ms);
if (ysf != NULL)
ysf->clock(ms);
if (m_dstarNetwork != NULL)
m_dstarNetwork->clock(ms);
if (m_dmrNetwork != NULL)
m_dmrNetwork->clock(ms);
stopWatch.start();
dmrBeaconTimer.clock(ms);