From 7d949c07d2284561d90e7545e4b78169fa223b17 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 11 Dec 2021 12:35:17 -0500 Subject: [PATCH] disallow CW when in a dedicated control configuration; --- host/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/Host.cpp b/host/Host.cpp index fe2d3222..8be7fa4e 100644 --- a/host/Host.cpp +++ b/host/Host.cpp @@ -1057,7 +1057,7 @@ int Host::run() // clock and check CW timer m_cwIdTimer.clock(ms); if (m_cwIdTimer.isRunning() && m_cwIdTimer.hasExpired()) { - if (!m_modem->hasTX()) { + if (!m_modem->hasTX() && !m_p25CtrlChannel && !m_dmrCtrlChannel) { if (dmrBeaconDurationTimer.isRunning() || p25CCDurationTimer.isRunning()) { LogDebug(LOG_HOST, "CW, beacon or CC timer running, ceasing");