From 51ddffa0ea76d19c1006857173c05fdd5757d09b Mon Sep 17 00:00:00 2001 From: Nate Weibley Date: Fri, 5 Feb 2016 19:17:10 -0500 Subject: [PATCH] Filter out LOG_DATA messages --- src/ui/MAVLinkDecoder.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/MAVLinkDecoder.cc b/src/ui/MAVLinkDecoder.cc index 25a9ff1cf..b30c49b6e 100644 --- a/src/ui/MAVLinkDecoder.cc +++ b/src/ui/MAVLinkDecoder.cc @@ -37,6 +37,7 @@ MAVLinkDecoder::MAVLinkDecoder(MAVLinkProtocol* protocol, QObject *parent) : messageFilter.insert(MAVLINK_MSG_ID_DATA_STREAM, false); messageFilter.insert(MAVLINK_MSG_ID_GPS_STATUS, false); messageFilter.insert(MAVLINK_MSG_ID_RC_CHANNELS_RAW, false); + messageFilter.insert(MAVLINK_MSG_ID_LOG_DATA, false); #ifdef MAVLINK_MSG_ID_ENCAPSULATED_DATA messageFilter.insert(MAVLINK_MSG_ID_ENCAPSULATED_DATA, false); #endif -- 2.22.0