Browse Source

Plane: don't prevent stick mixing in none RC failsafe

gps-1.3.1
Iampete1 3 years ago committed by Andrew Tridgell
parent
commit
7265ed552b
  1. 3
      ArduPlane/Attitude.cpp

3
ArduPlane/Attitude.cpp

@ -82,9 +82,8 @@ bool Plane::stick_mixing_enabled(void) @@ -82,9 +82,8 @@ bool Plane::stick_mixing_enabled(void)
if (g.stick_mixing != StickMixing::NONE &&
g.stick_mixing != StickMixing::VTOL_YAW &&
stickmixing &&
failsafe.state == FAILSAFE_NONE &&
!rc_failsafe_active()) {
// we're in an auto mode, and haven't triggered failsafe
// we're in an auto mode, and haven't triggered rc failsafe
return true;
} else {
return false;

Loading…
Cancel
Save