Browse Source

Copter:AP_ARMING - remove collective position prearm check for heli

mission-4.1.18
ChristopherOlson 6 years ago committed by Randy Mackay
parent
commit
e56c970eb0
  1. 2
      ArduCopter/AP_Arming.cpp

2
ArduCopter/AP_Arming.cpp

@ -547,10 +547,12 @@ bool AP_Arming_Copter::arm_checks(bool display_failure, AP_Arming::Method method @@ -547,10 +547,12 @@ bool AP_Arming_Copter::arm_checks(bool display_failure, AP_Arming::Method method
return false;
}
// in manual modes throttle must be at zero
#if FRAME_CONFIG != HELI_FRAME
if ((copter.flightmode->has_manual_throttle() || control_mode == DRIFT) && copter.channel_throttle->get_control_in() > 0) {
check_failed(ARMING_CHECK_RC, display_failure, "%s too high", rc_item);
return false;
}
#endif
}
}

Loading…
Cancel
Save