Switch off D-Star fast data for now.

This commit is contained in:
Jonathan Naylor
2025-04-24 14:41:45 +01:00
parent 3bb600e3f9
commit 8e0705e2a9
2 changed files with 7 additions and 1 deletions

View File

@@ -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
}
}

View File

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