Skip to content
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

feat(autoware_planning_msgs): add VelocityLimit message #117

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions autoware_planning_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/TrajectoryPoint.msg"
"msg/Path.msg"
"msg/PathPoint.msg"
"msg/VelocityLimit.msg"
"msg/VelocityLimitConstraints.msg"
"msg/VelocityClearCommand.msg"
DEPENDENCIES
geometry_msgs
std_msgs
Expand Down
7 changes: 7 additions & 0 deletions autoware_planning_msgs/msg/VelocityLimit.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
builtin_interfaces/Time stamp
float32 max_velocity

bool use_constraints false
autoware_planning_msgs/VelocityLimitConstraints constraints

string sender
3 changes: 3 additions & 0 deletions autoware_planning_msgs/msg/VelocityLimitClearCommand.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
builtin_interfaces/Time stamp
bool command false
string sender
11 changes: 11 additions & 0 deletions autoware_planning_msgs/msg/VelocityLimitConstraints.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# maximum signed acceleration
float32 max_acceleration

# minimum signed acceleration
float32 min_acceleration

# maximum signed jerk
float32 max_jerk

# minimum signed jerk
float32 min_jerk