From 15d6e664d816c61982d3c3bb8affe604ab83e640 Mon Sep 17 00:00:00 2001 From: Maxim Buzdalov Date: Wed, 28 Aug 2024 16:04:09 +0100 Subject: [PATCH] AP_Notify: Fix compilation error in GPIO_LED_1.cpp --- libraries/AP_Notify/GPIO_LED_1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Notify/GPIO_LED_1.cpp b/libraries/AP_Notify/GPIO_LED_1.cpp index 4f11affe02..431256465f 100644 --- a/libraries/AP_Notify/GPIO_LED_1.cpp +++ b/libraries/AP_Notify/GPIO_LED_1.cpp @@ -48,7 +48,7 @@ void GPIO_LED_1::update(void) if (AP_Notify::flags.initialising) { new_pattern = INITIALIZING; } else if (AP_Notify::flags.failsafe_radio || AP_Notify::flags.failsafe_gcs || AP_Notify::flags.failsafe_battery) { - new pattern = FAILSAFE; + new_pattern = FAILSAFE; } else if (AP_Notify::flags.armed) { new_pattern = ARMED; } else if (AP_Notify::flags.pre_arm_check) {