From 6af252f315b1a3cafeb480c67ce9e688327cf7fb Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Wed, 31 Oct 2018 14:49:57 +0000 Subject: [PATCH] Ignore DVMEGA-Cast specific command. --- SerialPort.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SerialPort.cpp b/SerialPort.cpp index c0ee778..f12e6bb 100644 --- a/SerialPort.cpp +++ b/SerialPort.cpp @@ -71,6 +71,7 @@ const uint8_t MMDVM_NAK = 0x7FU; const uint8_t MMDVM_SERIAL = 0x80U; const uint8_t MMDVM_TRANSPARENT = 0x90U; +const uint8_t MMDVM_QSO_INFO = 0x91U; const uint8_t MMDVM_DEBUG1 = 0xF1U; const uint8_t MMDVM_DEBUG2 = 0xF2U; @@ -820,6 +821,7 @@ void CSerialPort::process() break; case MMDVM_TRANSPARENT: + case MMDVM_QSO_INFO: // Do nothing on the MMDVM. break;