Copter: Remove yaw rate wrapping in guided mode.
This commit is contained in:
parent
4c8ada111b
commit
b3b7f2d3d2
@ -591,7 +591,7 @@ void ModeGuided::angle_control_run()
|
||||
|
||||
// wrap yaw request
|
||||
float yaw_in = wrap_180_cd(guided_angle_state.yaw_cd);
|
||||
float yaw_rate_in = wrap_180_cd(guided_angle_state.yaw_rate_cds);
|
||||
float yaw_rate_in = guided_angle_state.yaw_rate_cds;
|
||||
|
||||
float climb_rate_cms = 0.0f;
|
||||
if (!guided_angle_state.use_thrust) {
|
||||
|
Loading…
Reference in New Issue
Block a user