mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-04 14:07:36 +00:00
Add the optional System Fusion Parrot.
This commit is contained in:
parent
7852bd53b5
commit
e2c7a28fb9
11 changed files with 206 additions and 5 deletions
|
|
@ -171,12 +171,14 @@ int CMMDVMHost::run()
|
|||
std::string callsign = m_conf.getCallsign();
|
||||
unsigned int timeout = m_conf.getTimeout();
|
||||
bool duplex = m_conf.getDuplex();
|
||||
bool parrot = m_conf.getFusionParrotEnabled();
|
||||
|
||||
LogInfo("System Fusion Parameters");
|
||||
LogInfo(" Callsign: %s", callsign.c_str());
|
||||
LogInfo(" Timeout: %us", timeout);
|
||||
LogInfo(" Parrot: %s", parrot ? "enabled" : "disabled");
|
||||
|
||||
ysf = new CYSFControl(callsign, m_display, timeout, duplex);
|
||||
ysf = new CYSFControl(callsign, m_display, timeout, duplex, parrot);
|
||||
}
|
||||
|
||||
m_modeTimer.setTimeout(m_conf.getModeHang());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue