TradHeli: enable Landing Collective when we are not moving

This prevents full negative pitch when touching down in Alt Hold or Auto-Landing.
This commit is contained in:
Robert Lefebvre 2014-01-05 16:09:10 -05:00 committed by Randy Mackay
parent 531a9f4f25
commit 794890884c

View File

@ -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;
}
}