-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
56 crptg1 test node fixing #73
base: main
Are you sure you want to change the base?
Conversation
Fetch from Main
Fetch mods from main
…ctrl_vehicle_control_lat_compensatory.cpp Co-authored-by: Józsa Dávid <44705915+AnonymDavid@users.noreply.github.com>
…ctrl_vehicle_control_lat_compensatory.cpp Co-authored-by: Józsa Dávid <44705915+AnonymDavid@users.noreply.github.com>
…_vehicle_control.hpp Co-authored-by: Józsa Dávid <44705915+AnonymDavid@users.noreply.github.com>
…' into 56-crptg1-test-node-fixing
…g1-test-node-fixing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left a couple of comments none of it is a must have...
// target values coming from the vehicle | ||
float m_roadWheelAngleTarget{0.0f}; | ||
float m_vehicleSpeedTarget{0.0f}; | ||
float p_wheelBase{2.7f}; // in meters | ||
double m_roadWheelAngleTarget{0.0f}; | ||
double m_vehicleSpeedTarget{0.0f}; | ||
double p_wheelBase{2.7f}; // in meters |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are fixed or overwritten in runtime ?
double m_maximumSpeedInit{20.0f}; // in mps | ||
|
||
double p_previewDistance = 100; // in meters | ||
double m_maximumSpeed{0.0f}; | ||
bool m_noEnoughPointsLeft{false}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe these params can be in a launch file ?
|
||
m_egoMsg.tire_angle_front = m_roadWheelAngleTarget; | ||
m_kinematicState.twist_with_covariance.twist.linear.x = m_vehicleSpeedTarget; | ||
|
||
return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe lateral acceleration can be publiseh too, or would be neat to have it in the future, for other types of controllers
No description provided.