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

fix(autoware_vehicle_msgs): add missed vehicle msgs #80

Merged
Merged
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
2 changes: 2 additions & 0 deletions autoware_vehicle_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/SteeringReport.msg"
"msg/TurnIndicatorsCommand.msg"
"msg/TurnIndicatorsReport.msg"
"msg/VehicleControlCommand.msg"
"msg/VehicleKinematicState.msg"
"msg/VehicleOdometry.msg"
"msg/VelocityReport.msg"
"srv/ControlModeCommand.srv"
Expand Down
5 changes: 5 additions & 0 deletions autoware_vehicle_msgs/msg/VehicleControlCommand.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
builtin_interfaces/Time stamp
float32 long_accel_mps2
float32 velocity_mps
float32 front_wheel_angle_rad
float32 rear_wheel_angle_rad
3 changes: 3 additions & 0 deletions autoware_vehicle_msgs/msg/VehicleKinematicState.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
std_msgs/Header header
autoware_planning_msgs/TrajectoryPoint state
geometry_msgs/Transform delta
Loading