Merge pull request #754 from W0CHP/master

This commit is contained in:
Jonathan Naylor 2022-12-05 15:35:58 +00:00 committed by GitHub
commit e812e90edf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1249,6 +1249,7 @@ int CMMDVMHost::run()
setMode(MODE_DMR); setMode(MODE_DMR);
dmrBeaconIntervalTimer.start(); dmrBeaconIntervalTimer.start();
dmrBeaconDurationTimer.start(); dmrBeaconDurationTimer.start();
if (m_duplex)
LogDebug("sending DMR Roaming Beacon (timed mode)"); LogDebug("sending DMR Roaming Beacon (timed mode)");
} }
} }
@ -1261,6 +1262,7 @@ int CMMDVMHost::run()
if (!m_fixedMode && m_mode == MODE_IDLE) if (!m_fixedMode && m_mode == MODE_IDLE)
setMode(MODE_DMR); setMode(MODE_DMR);
dmrBeaconDurationTimer.start(); dmrBeaconDurationTimer.start();
if (m_duplex)
LogDebug("sending DMR Roaming Beacon (network mode)"); LogDebug("sending DMR Roaming Beacon (network mode)");
} }
} }