From ebb8669c0dd1a523d3fb6c86e532feb64ddc3372 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Thu, 24 Oct 2024 17:21:37 -0400 Subject: [PATCH] disable watchdog checking while the modem is transmitting CW; --- src/host/Host.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/host/Host.cpp b/src/host/Host.cpp index e894995b..383551ea 100644 --- a/src/host/Host.cpp +++ b/src/host/Host.cpp @@ -1773,6 +1773,11 @@ void* Host::threadWatchdog(void* arg) uint32_t ms = stopWatch.elapsed(); stopWatch.start(); + if (host->m_isTxCW) { + Thread::sleep(1U); + continue; + } + // scope is intentional { /** Digital Mobile Radio */