Copter: remove slow_start from stabilizing

This commit is contained in:
Randy Mackay 2016-02-04 11:59:27 +09:00
parent 1c98cd9d52
commit 0abea7af68

View File

@ -31,10 +31,6 @@ void Copter::stabilize_run()
if (!motors.armed() || ap.throttle_zero || !motors.get_interlock()) {
motors.set_desired_spool_state(AP_Motors::DESIRED_SPIN_WHEN_ARMED);
attitude_control.set_throttle_out_unstabilized(0,true,g.throttle_filt);
// slow start if landed
if (ap.land_complete) {
motors.slow_start(true);
}
return;
}