Add DTMF connection for XLX

This commit is contained in:
Geoffrey Merck F4FXL - KC3FRA 2019-04-08 09:16:05 +02:00
parent dff387f06f
commit a2e459676d

View file

@ -167,6 +167,8 @@ wxString CDTMF::translate()
return processReflector(wxT("XRF"), command.Mid(1U));
else if (command.GetChar(0U) == wxT('D'))
return processReflector(wxT("DCS"), command.Mid(1U));
else if (command.GetChar(0U) == wxT('#'))
return processReflector(wxT("XLX"), command.Mid(1U));
else
return processCCS(command);
}