forked from Archive/PX4-Autopilot
Merge pull request #880 from PX4/yaw_ff_fix
mc_att_control: yaw feed-forward in manual control modes fixed
This commit is contained in:
commit
e7ebcd6c57
|
@ -496,7 +496,8 @@ MulticopterAttitudeControl::control_attitude(float dt)
|
|||
//}
|
||||
} else {
|
||||
/* move yaw setpoint */
|
||||
_v_att_sp.yaw_body = _wrap_pi(_v_att_sp.yaw_body + _manual_control_sp.yaw * _params.man_yaw_max * dt);
|
||||
yaw_sp_move_rate = _manual_control_sp.yaw * _params.man_yaw_max;
|
||||
_v_att_sp.yaw_body = _wrap_pi(_v_att_sp.yaw_body + yaw_sp_move_rate * dt);
|
||||
_v_att_sp.R_valid = false;
|
||||
publish_att_sp = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue