forked from Archive/PX4-Autopilot
FlightTaskOrbit: increase acceptance radius from 1 to 2m
to avoid reaproaching when tracking is not perfect while acc/deccelerating by stick.
This commit is contained in:
parent
eda9dce033
commit
6cea707330
|
@ -74,7 +74,7 @@ private:
|
|||
static constexpr float _radius_max = 100.f;
|
||||
static constexpr float _velocity_max = 10.f;
|
||||
static constexpr float _acceleration_max = 2.f;
|
||||
static constexpr float _horizontal_acceptance_radius = 1.f;
|
||||
static constexpr float _horizontal_acceptance_radius = 2.f;
|
||||
|
||||
/**
|
||||
* Check the feasibility of orbit parameters with respect to
|
||||
|
|
Loading…
Reference in New Issue