Browse Source

Copter: EKF failsafe action always Land if RC failsafe active

mission-4.1.18
Jonathan Challinger 9 years ago committed by Randy Mackay
parent
commit
598925f8d2
  1. 2
      ArduCopter/ekf_check.cpp

2
ArduCopter/ekf_check.cpp

@ -141,7 +141,7 @@ void Copter::failsafe_ekf_event() @@ -141,7 +141,7 @@ void Copter::failsafe_ekf_event()
switch (g.fs_ekf_action) {
case FS_EKF_ACTION_ALTHOLD:
// AltHold
if (!set_mode(ALT_HOLD)) {
if (failsafe.radio || !set_mode(ALT_HOLD)) {
set_mode_land_with_pause();
}
break;

Loading…
Cancel
Save