Browse Source

Plane: require 5 channels to run failsafe passthrough

master
Andrew Tridgell 10 years ago
parent
commit
2d60934335
  1. 2
      ArduPlane/failsafe.cpp

2
ArduPlane/failsafe.cpp

@ -50,7 +50,7 @@ void Plane::failsafe_check(void) @@ -50,7 +50,7 @@ void Plane::failsafe_check(void)
}
#endif
if (hal.rcin->num_channels() == 0) {
if (hal.rcin->num_channels() < 5) {
// we don't have any RC input to pass through
return;
}

Loading…
Cancel
Save