From 8e0705e2a963653cb3c7084303c8f7b42daa8d7c Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 24 Apr 2025 14:41:45 +0100 Subject: [PATCH] Switch off D-Star fast data for now. --- DStarControl.cpp | 6 ++++++ Version.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/DStarControl.cpp b/DStarControl.cpp index f630d8a..93cc77b 100644 --- a/DStarControl.cpp +++ b/DStarControl.cpp @@ -368,6 +368,8 @@ bool CDStarControl::writeModem(unsigned char *data, unsigned int len) m_rfSlowData.add(data + 1U); } +#ifdef notdef + // Switch off D-Star fast data for RF if (m_rfState == RPT_RF_STATE::AUDIO) { unsigned char type = m_rfSlowData.getType(); @@ -376,6 +378,7 @@ bool CDStarControl::writeModem(unsigned char *data, unsigned int len) m_rfState = RPT_RF_STATE::DATA; } } +#endif if (m_rfState == RPT_RF_STATE::DATA) { // Send the RSSI data to the display @@ -743,6 +746,8 @@ void CDStarControl::writeNetwork() } else { m_netSlowData.add(data + 2U); +#ifdef notdef + // Switch off D-Star fast data for network traffic if (m_netState == RPT_NET_STATE::AUDIO) { unsigned char type = m_netSlowData.getType(); if (type == DSTAR_SLOW_DATA_TYPE_FASTDATA_BEGIN) { @@ -750,6 +755,7 @@ void CDStarControl::writeNetwork() m_netState = RPT_NET_STATE::DATA; } } +#endif } } diff --git a/Version.h b/Version.h index b62c495..5481626 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20250422"; +const char* VERSION = "20250424"; #endif