Skip to content
Snippets Groups Projects
Commit 6b01c111 authored by Leonard Hall's avatar Leonard Hall Committed by Randy Mackay
Browse files

Copter: keep thr-mix at min when landed

parent bec21a51
No related branches found
No related tags found
No related merge requests found
......@@ -114,8 +114,8 @@ void Copter::set_land_complete_maybe(bool b)
void Copter::update_throttle_thr_mix()
{
#if FRAME_CONFIG != HELI_FRAME
// if disarmed prioritise throttle
if(!motors.armed()) {
// if disarmed or landed prioritise throttle
if(!motors.armed() || ap.land_complete) {
motors.set_throttle_mix_min();
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment