Merge pull request #29 from F4FXL/NewXLX

Add ability to connect to XLX using DTMF
This commit is contained in:
Jonathan Naylor 2019-04-09 07:49:38 +01:00 committed by GitHub
commit c40eae61f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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('A'))
return processReflector(wxT("XLX"), command.Mid(1U));
else
return processCCS(command);
}