Skip to content

Commit

Permalink
FlightTaskOrbit: increase radius limit
Browse files Browse the repository at this point in the history
  • Loading branch information
MaEtUgR committed Mar 28, 2022
1 parent d0794c1 commit c7f114a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class FlightTaskOrbit : public FlightTaskManualAltitudeSmoothVel
private:
/* TODO: Should be controlled by params */
static constexpr float _radius_min = 1.f;
static constexpr float _radius_max = 100.f;
static constexpr float _radius_max = 1e3f;
static constexpr float _velocity_max = 10.f;
static constexpr float _acceleration_max = 2.f;
static constexpr float _horizontal_acceptance_radius = 2.f;
Expand Down

0 comments on commit c7f114a

Please sign in to comment.