diff --git a/DStarControl.cpp b/DStarControl.cpp index cab1905..771c66c 100644 --- a/DStarControl.cpp +++ b/DStarControl.cpp @@ -382,6 +382,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(); @@ -390,6 +392,7 @@ bool CDStarControl::writeModem(unsigned char *data, unsigned int len) m_rfState = RPT_RF_STATE::DATA; } } +#endif if (m_rfState == RPT_RF_STATE::DATA) { if (m_rfN == 0U) @@ -747,6 +750,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) { @@ -754,6 +759,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