Fix TradHeli Collective Yaw Effect bug.

This commit is contained in:
Robert Lefebvre 2012-05-25 15:25:21 -04:00
parent 9a92531e8c
commit 56335e81e4

View File

@ -427,7 +427,7 @@ void AP_MotorsHeli::move_swash(int16_t roll_out, int16_t pitch_out, int16_t coll
// rudder feed forward based on collective
if( !ext_gyro_enabled ) {
yaw_offset = collective_yaw_effect * abs(coll_out_scaled - collective_mid);
yaw_offset = collective_yaw_effect * abs(coll_out_scaled - throttle_mid);
}
}