From 98409ee58b7f49e25a62762319e3d67798082baa Mon Sep 17 00:00:00 2001 From: Wez <59873510+wvarty@users.noreply.github.com> Date: Tue, 3 Sep 2024 15:26:19 +1000 Subject: [PATCH] Remove the auto protocol detection for now, as it is false-triggering (#2910) --- src/src/rx_main.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/src/rx_main.cpp b/src/src/rx_main.cpp index c722dd67..049a82de 100644 --- a/src/src/rx_main.cpp +++ b/src/src/rx_main.cpp @@ -1246,11 +1246,6 @@ void MspReceiveComplete() #endif break; case MSP_ELRS_MAVLINK_TLM: // 0xFD - if (config.GetSerialProtocol() != PROTOCOL_MAVLINK) - { - config.SetSerialProtocol(PROTOCOL_MAVLINK); - reconfigureSerial(); - } // raw mavlink data mavlinkOutputBuffer.atomicPushBytes(&MspData[2], MspData[1]); break; -- 2.11.4.GIT