Remove the System Fusion parrot.

This commit is contained in:
Jonathan Naylor
2016-05-16 18:28:24 +01:00
parent f8790d91a8
commit 1d5ed691c4
14 changed files with 62 additions and 236 deletions

View File

@@ -304,14 +304,12 @@ int CMMDVMHost::run()
CYSFControl* ysf = NULL;
if (m_ysfEnabled) {
unsigned int timeout = m_conf.getTimeout();
bool parrot = m_conf.getFusionParrotEnabled();
LogInfo("System Fusion Parameters");
LogInfo(" Callsign: %s", m_callsign.c_str());
LogInfo(" Timeout: %us", timeout);
LogInfo(" Parrot: %s", parrot ? "enabled" : "disabled");
ysf = new CYSFControl(m_callsign, m_display, timeout, m_duplex, parrot);
ysf = new CYSFControl(m_callsign, m_display, timeout, m_duplex);
}
m_modeTimer.setTimeout(m_conf.getModeHang());