From a2e459676d23624eea2d9a24460d1efe6952d106 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck F4FXL - KC3FRA Date: Mon, 8 Apr 2019 09:16:05 +0200 Subject: [PATCH 1/2] Add DTMF connection for XLX --- Common/DTMF.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Common/DTMF.cpp b/Common/DTMF.cpp index a05cbed..77c7287 100644 --- a/Common/DTMF.cpp +++ b/Common/DTMF.cpp @@ -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); } From 21a782887f5905488746f011cb9890cff57547e3 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck F4FXL - KC3FRA Date: Mon, 8 Apr 2019 13:56:42 +0200 Subject: [PATCH 2/2] Changed # for A for XLX linking ... --- Common/DTMF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/DTMF.cpp b/Common/DTMF.cpp index 77c7287..bab79c3 100644 --- a/Common/DTMF.cpp +++ b/Common/DTMF.cpp @@ -167,7 +167,7 @@ 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('#')) + else if (command.GetChar(0U) == wxT('A')) return processReflector(wxT("XLX"), command.Mid(1U)); else return processCCS(command);