Skip to content
Snippets Groups Projects
Commit e4949bf3 authored by Robert Lefebvre's avatar Robert Lefebvre Committed by Randy Mackay
Browse files

TradHeli: enable Landing Collective when we are not moving

This prevents full negative pitch when touching down in Alt Hold or Auto-Landing.
parent c940c253
No related branches found
No related tags found
No related merge requests found
......@@ -314,7 +314,7 @@ static void heli_update_landing_swash()
case THROTTLE_AUTO:
default:
// auto and hold use limited swash when landed
motors.set_collective_for_landing(ap.land_complete || !ap.auto_armed);
motors.set_collective_for_landing(!heli_flags.dynamic_flight || ap.land_complete || !ap.auto_armed);
break;
}
}
......
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