Browse Source

Copter: display throttle below failsafe only when display_failure set

master_rangefinder
Peter Barker 2 years ago committed by Peter Barker
parent
commit
7c6ec00e11
  1. 2
      ArduCopter/AP_Arming.cpp

2
ArduCopter/AP_Arming.cpp

@ -92,7 +92,7 @@ bool AP_Arming_Copter::rc_throttle_failsafe_checks(bool display_failure) const @@ -92,7 +92,7 @@ bool AP_Arming_Copter::rc_throttle_failsafe_checks(bool display_failure) const
// check throttle is not too low - must be above failsafe throttle
if (copter.channel_throttle->get_radio_in() < copter.g.failsafe_throttle_value) {
check_failed(ARMING_CHECK_RC, true, "%s below failsafe", rc_item);
check_failed(ARMING_CHECK_RC, display_failure, "%s below failsafe", rc_item);
return false;
}

Loading…
Cancel
Save