mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AC_Autorotation: use accel_to_angle()
This commit is contained in:
parent
f398cf8814
commit
ecbcbbe044
@ -366,7 +366,7 @@ void AC_Autorotation::update_forward_speed_controller(void)
|
||||
_accel_out_last = _accel_out;
|
||||
|
||||
// update angle targets that will be passed to stabilize controller
|
||||
_pitch_target = atanf(-_accel_out/(GRAVITY_MSS * 100.0f))*(18000.0f/M_PI);
|
||||
_pitch_target = accel_to_angle(-_accel_out*0.01) * 100;
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user