mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-23 00:35:53 +08:00
Remove the old System Fusion SQL config option and processing.
This commit is contained in:
@@ -500,8 +500,8 @@ int CMMDVMHost::run()
|
||||
bool remoteGateway = m_conf.getFusionRemoteGateway();
|
||||
unsigned int txHang = m_conf.getFusionTXHang();
|
||||
bool selfOnly = m_conf.getFusionSelfOnly();
|
||||
bool sqlEnabled = m_conf.getFusionSQLEnabled();
|
||||
unsigned char sql = m_conf.getFusionSQL();
|
||||
bool dgIdEnabled = m_conf.getFusionDGIdEnabled();
|
||||
unsigned char dgId = m_conf.getFusionDGId();
|
||||
m_ysfRFModeHang = m_conf.getFusionModeHang();
|
||||
|
||||
LogInfo("YSF RF Parameters");
|
||||
@@ -509,13 +509,13 @@ int CMMDVMHost::run()
|
||||
LogInfo(" Remote Gateway: %s", remoteGateway ? "yes" : "no");
|
||||
LogInfo(" TX Hang: %us", txHang);
|
||||
LogInfo(" Self Only: %s", selfOnly ? "yes" : "no");
|
||||
LogInfo(" DSQ: %s", sqlEnabled ? "yes" : "no");
|
||||
if (sqlEnabled)
|
||||
LogInfo(" DSQ Value: %u", sql);
|
||||
LogInfo(" DG-ID: %s", dgIdEnabled ? "yes" : "no");
|
||||
if (dgIdEnabled)
|
||||
LogInfo(" DG-ID Value: %u", dgId);
|
||||
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->setSQL(sqlEnabled, sql);
|
||||
m_ysf->setDGId(dgIdEnabled, dgId);
|
||||
}
|
||||
|
||||
if (m_p25Enabled) {
|
||||
|
||||
Reference in New Issue
Block a user