mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
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) {
|
if (AP_Notify::flags.initialising) {
|
||||||
new_pattern = INITIALIZING;
|
new_pattern = INITIALIZING;
|
||||||
} else if (AP_Notify::flags.failsafe_radio || AP_Notify::flags.failsafe_gcs || AP_Notify::flags.failsafe_battery) {
|
} 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) {
|
} else if (AP_Notify::flags.armed) {
|
||||||
new_pattern = ARMED;
|
new_pattern = ARMED;
|
||||||
} else if (AP_Notify::flags.pre_arm_check) {
|
} else if (AP_Notify::flags.pre_arm_check) {
|
||||||
|
Loading…
Reference in New Issue
Block a user