mirror of https://github.com/ArduPilot/ardupilot
AP_Notify: Fix compilation error in GPIO_LED_1.cpp
This commit is contained in:
parent
0dbe9ed27f
commit
15d6e664d8
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue