Enable the network watchdog timer for fast data.

This commit is contained in:
Jonathan Naylor
2025-04-22 13:30:20 +01:00
parent 65ebb55171
commit 3a2c2fadaa
2 changed files with 2 additions and 2 deletions

View File

@@ -843,7 +843,7 @@ void CDStarControl::clock()
m_rfTimeoutTimer.clock(ms);
m_netTimeoutTimer.clock(ms);
if (m_netState == RPT_NET_STATE::AUDIO) {
if ((m_netState == RPT_NET_STATE::AUDIO) || (m_netState == RPT_NET_STATE::DATA)) {
m_networkWatchdog.clock(ms);
if (m_networkWatchdog.hasExpired()) {

View File

@@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20250419";
const char* VERSION = "20250422";
#endif