mirror of https://github.com/ArduPilot/ardupilot
AC_Loiter: use Pos_Control soften_for_landing_xy
This commit is contained in:
parent
d186cef7e0
commit
38d2d51820
|
@ -132,14 +132,7 @@ void AC_Loiter::init_target()
|
||||||
/// reduce response for landing
|
/// reduce response for landing
|
||||||
void AC_Loiter::soften_for_landing()
|
void AC_Loiter::soften_for_landing()
|
||||||
{
|
{
|
||||||
const Vector3f& curr_pos = _inav.get_position_neu_cm();
|
_pos_control.soften_for_landing_xy();
|
||||||
|
|
||||||
// set target position to current position
|
|
||||||
_pos_control.set_pos_target_xy_cm(curr_pos.x, curr_pos.y);
|
|
||||||
|
|
||||||
// also prevent I term build up in xy velocity controller. Note
|
|
||||||
// that this flag is reset on each loop, in update_xy_controller()
|
|
||||||
_pos_control.set_externally_limited_xy();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// set pilot desired acceleration in centi-degrees
|
/// set pilot desired acceleration in centi-degrees
|
||||||
|
|
Loading…
Reference in New Issue