mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 23:45:49 +08:00
Update files to remove DG-ID and mantain consistency in code
This commit is contained in:
17
Conf.cpp
17
Conf.cpp
@@ -155,8 +155,6 @@ m_fusionLowDeviation(false),
|
|||||||
m_fusionRemoteGateway(false),
|
m_fusionRemoteGateway(false),
|
||||||
m_fusionSelfOnly(false),
|
m_fusionSelfOnly(false),
|
||||||
m_fusionTXHang(4U),
|
m_fusionTXHang(4U),
|
||||||
m_fusionDGIdEnabled(false),
|
|
||||||
m_fusionDGId(0U),
|
|
||||||
m_fusionModeHang(10U),
|
m_fusionModeHang(10U),
|
||||||
m_p25Enabled(false),
|
m_p25Enabled(false),
|
||||||
m_p25Id(0U),
|
m_p25Id(0U),
|
||||||
@@ -667,10 +665,7 @@ bool CConf::read()
|
|||||||
m_fusionEnabled = ::atoi(value) == 1;
|
m_fusionEnabled = ::atoi(value) == 1;
|
||||||
else if (::strcmp(key, "LowDeviation") == 0)
|
else if (::strcmp(key, "LowDeviation") == 0)
|
||||||
m_fusionLowDeviation = ::atoi(value) == 1;
|
m_fusionLowDeviation = ::atoi(value) == 1;
|
||||||
else if (::strcmp(key, "DGID") == 0) {
|
else if (::strcmp(key, "RemoteGateway") == 0)
|
||||||
m_fusionDGIdEnabled = true;
|
|
||||||
m_fusionDGId = (unsigned int)::atoi(value);
|
|
||||||
} else if (::strcmp(key, "RemoteGateway") == 0)
|
|
||||||
m_fusionRemoteGateway = ::atoi(value) == 1;
|
m_fusionRemoteGateway = ::atoi(value) == 1;
|
||||||
else if (::strcmp(key, "SelfOnly") == 0)
|
else if (::strcmp(key, "SelfOnly") == 0)
|
||||||
m_fusionSelfOnly = ::atoi(value) == 1;
|
m_fusionSelfOnly = ::atoi(value) == 1;
|
||||||
@@ -1444,16 +1439,6 @@ bool CConf::getFusionSelfOnly() const
|
|||||||
return m_fusionSelfOnly;
|
return m_fusionSelfOnly;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CConf::getFusionDGIdEnabled() const
|
|
||||||
{
|
|
||||||
return m_fusionDGIdEnabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned char CConf::getFusionDGId() const
|
|
||||||
{
|
|
||||||
return m_fusionDGId;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int CConf::getFusionModeHang() const
|
unsigned int CConf::getFusionModeHang() const
|
||||||
{
|
{
|
||||||
return m_fusionModeHang;
|
return m_fusionModeHang;
|
||||||
|
|||||||
4
Conf.h
4
Conf.h
@@ -145,8 +145,6 @@ public:
|
|||||||
bool getFusionRemoteGateway() const;
|
bool getFusionRemoteGateway() const;
|
||||||
bool getFusionSelfOnly() const;
|
bool getFusionSelfOnly() const;
|
||||||
unsigned int getFusionTXHang() const;
|
unsigned int getFusionTXHang() const;
|
||||||
bool getFusionDGIdEnabled() const;
|
|
||||||
unsigned char getFusionDGId() const;
|
|
||||||
unsigned int getFusionModeHang() const;
|
unsigned int getFusionModeHang() const;
|
||||||
|
|
||||||
// The P25 section
|
// The P25 section
|
||||||
@@ -421,8 +419,6 @@ private:
|
|||||||
bool m_fusionRemoteGateway;
|
bool m_fusionRemoteGateway;
|
||||||
bool m_fusionSelfOnly;
|
bool m_fusionSelfOnly;
|
||||||
unsigned int m_fusionTXHang;
|
unsigned int m_fusionTXHang;
|
||||||
bool m_fusionDGIdEnabled;
|
|
||||||
unsigned char m_fusionDGId;
|
|
||||||
unsigned int m_fusionModeHang;
|
unsigned int m_fusionModeHang;
|
||||||
|
|
||||||
bool m_p25Enabled;
|
bool m_p25Enabled;
|
||||||
|
|||||||
@@ -535,8 +535,6 @@ int CMMDVMHost::run()
|
|||||||
bool remoteGateway = m_conf.getFusionRemoteGateway();
|
bool remoteGateway = m_conf.getFusionRemoteGateway();
|
||||||
unsigned int txHang = m_conf.getFusionTXHang();
|
unsigned int txHang = m_conf.getFusionTXHang();
|
||||||
bool selfOnly = m_conf.getFusionSelfOnly();
|
bool selfOnly = m_conf.getFusionSelfOnly();
|
||||||
bool dgIdEnabled = m_conf.getFusionDGIdEnabled();
|
|
||||||
unsigned char dgId = m_conf.getFusionDGId();
|
|
||||||
m_ysfRFModeHang = m_conf.getFusionModeHang();
|
m_ysfRFModeHang = m_conf.getFusionModeHang();
|
||||||
|
|
||||||
LogInfo("YSF RF Parameters");
|
LogInfo("YSF RF Parameters");
|
||||||
@@ -544,13 +542,9 @@ int CMMDVMHost::run()
|
|||||||
LogInfo(" Remote Gateway: %s", remoteGateway ? "yes" : "no");
|
LogInfo(" Remote Gateway: %s", remoteGateway ? "yes" : "no");
|
||||||
LogInfo(" TX Hang: %us", txHang);
|
LogInfo(" TX Hang: %us", txHang);
|
||||||
LogInfo(" Self Only: %s", selfOnly ? "yes" : "no");
|
LogInfo(" Self Only: %s", selfOnly ? "yes" : "no");
|
||||||
LogInfo(" DG-ID: %s", dgIdEnabled ? "yes" : "no");
|
|
||||||
if (dgIdEnabled)
|
|
||||||
LogInfo(" DG-ID Value: %u", dgId);
|
|
||||||
LogInfo(" Mode Hang: %us", m_ysfRFModeHang);
|
LogInfo(" Mode Hang: %us", m_ysfRFModeHang);
|
||||||
|
|
||||||
m_ysf = new CYSFControl(m_callsign, selfOnly, m_ysfNetwork, m_display, m_timeout, m_duplex, lowDeviation, remoteGateway, rssi);
|
m_ysf = new CYSFControl(m_callsign, selfOnly, m_ysfNetwork, m_display, m_timeout, m_duplex, lowDeviation, remoteGateway, rssi);
|
||||||
m_ysf->setDGId(dgIdEnabled, dgId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_p25Enabled) {
|
if (m_p25Enabled) {
|
||||||
|
|||||||
@@ -38,8 +38,6 @@ public:
|
|||||||
CYSFControl(const std::string& callsign, bool selfOnly, CYSFNetwork* network, CDisplay* display, unsigned int timeout, bool duplex, bool lowDeviation, bool remoteGateway, CRSSIInterpolator* rssiMapper);
|
CYSFControl(const std::string& callsign, bool selfOnly, CYSFNetwork* network, CDisplay* display, unsigned int timeout, bool duplex, bool lowDeviation, bool remoteGateway, CRSSIInterpolator* rssiMapper);
|
||||||
~CYSFControl();
|
~CYSFControl();
|
||||||
|
|
||||||
void setDGId(bool on, unsigned char value);
|
|
||||||
|
|
||||||
bool writeModem(unsigned char* data, unsigned int len);
|
bool writeModem(unsigned char* data, unsigned int len);
|
||||||
|
|
||||||
unsigned int readModem(unsigned char* data);
|
unsigned int readModem(unsigned char* data);
|
||||||
@@ -59,8 +57,6 @@ private:
|
|||||||
bool m_duplex;
|
bool m_duplex;
|
||||||
bool m_lowDeviation;
|
bool m_lowDeviation;
|
||||||
bool m_remoteGateway;
|
bool m_remoteGateway;
|
||||||
bool m_dgIdEnabled;
|
|
||||||
unsigned char m_dgIdValue;
|
|
||||||
CRingBuffer<unsigned char> m_queue;
|
CRingBuffer<unsigned char> m_queue;
|
||||||
RPT_RF_STATE m_rfState;
|
RPT_RF_STATE m_rfState;
|
||||||
RPT_NET_STATE m_netState;
|
RPT_NET_STATE m_netState;
|
||||||
|
|||||||
Reference in New Issue
Block a user