mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-22 15:53:56 -04:00
AC_PosControl: fix relax_alt_hold_controllers
This commit is contained in:
parent
24044e5611
commit
34055944cd
@ -243,7 +243,7 @@ void AC_PosControl::relax_alt_hold_controllers(float throttle_setting)
|
|||||||
_accel_last_z_cms = 0.0f;
|
_accel_last_z_cms = 0.0f;
|
||||||
_accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
|
_accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
|
||||||
_flags.reset_accel_to_throttle = true;
|
_flags.reset_accel_to_throttle = true;
|
||||||
_pid_accel_z.set_integrator(throttle_setting*1000.0f);
|
_pid_accel_z.set_integrator((throttle_setting-_motors.get_throttle_hover())*1000.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
// get_alt_error - returns altitude error in cm
|
// get_alt_error - returns altitude error in cm
|
||||||
|
Loading…
Reference in New Issue
Block a user