Browse Source

Copter: Remove yaw rate wrapping in guided mode.

c415-sdk
Mathias Bos 4 years ago committed by Randy Mackay
parent
commit
b3b7f2d3d2
  1. 2
      ArduCopter/mode_guided.cpp

2
ArduCopter/mode_guided.cpp

@ -591,7 +591,7 @@ void ModeGuided::angle_control_run() @@ -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…
Cancel
Save