Skip to content

Commit

Permalink
fix: solved steering clamp in control
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide64-dev committed Nov 27, 2024
1 parent 56aed05 commit b595b73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/control/include/pure_pursuit/pp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#include "rclcpp/rclcpp.hpp"

/**< Maximum steering angle in rad */
constexpr double MAX_STEERING_ANGLE = 1.570;
constexpr double MAX_STEERING_ANGLE = 0.392699;

/**< Minimum steering angle in rad */
constexpr double MIN_STEERING_ANGLE = -1.570;
constexpr double MIN_STEERING_ANGLE = -0.392699;

/**< Wheel base of the vehicle in m */
constexpr double WHEEL_BASE = 1.5;
Expand Down

0 comments on commit b595b73

Please sign in to comment.