From 438e96c1f0370eef85f0cc72f6581407344c50bb Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Tue, 1 Aug 2023 11:24:32 +0200 Subject: [PATCH] Rename flight mode (#12983) * Rename flight mode * Remove GND mode --- src/main/telemetry/crsf.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/telemetry/crsf.c b/src/main/telemetry/crsf.c index c69644056..e06ba340e 100644 --- a/src/main/telemetry/crsf.c +++ b/src/main/telemetry/crsf.c @@ -378,11 +378,6 @@ void crsfFrameFlightMode(sbuf_t *dst) // Acro is the default mode const char *flightMode = "ACRO"; - // Modes that are only relevant when disarmed - if (!ARMING_FLAG(ARMED) && isArmingDisabled()) { - flightMode = "!ERR"; - } else - #if defined(USE_GPS) if (!ARMING_FLAG(ARMED) && featureIsEnabled(FEATURE_GPS) && (!STATE(GPS_FIX) || !STATE(GPS_FIX_HOME))) { flightMode = "WAIT"; // Waiting for GPS lock -- 2.11.4.GIT