Browse Source

Plane: don't failsafe when in RTL_AUTOLAND landing sequence

when in AUTO and already in the landing sequence then don't trigger a
failsafe
apm_2208
Andrew Tridgell 3 years ago committed by Peter Barker
parent
commit
afb7b14703
  1. 3
      ArduPlane/events.cpp

3
ArduPlane/events.cpp

@ -12,6 +12,9 @@ bool Plane::failsafe_in_landing_sequence() const
return true; return true;
} }
#endif #endif
if (mission.get_in_landing_sequence_flag()) {
return true;
}
return false; return false;
} }

Loading…
Cancel
Save