Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-planning-scenario-msg
Browse files Browse the repository at this point in the history
Signed-off-by: Yutaka Kondo <[email protected]>
  • Loading branch information
youtalk authored Jan 15, 2025
2 parents 5ca1dfe + b26950a commit f1a8ce9
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autoware_internal_debug_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ set(msg_files
"msg/Int64Stamped.msg"
"msg/Int64MultiArrayStamped.msg"
"msg/StringStamped.msg"
"msg/ProcessingTimeNode.msg"
"msg/ProcessingTimeTree.msg"
)

set(srv_files
Expand Down
10 changes: 10 additions & 0 deletions autoware_internal_debug_msgs/msg/ProcessingTimeNode.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Unique ID of the node
int32 id
# Name of the node
string name
# Processing time of the node
float64 processing_time
# ID of the parent node, 0 if no parent
int32 parent_id
# Comment
string comment
2 changes: 2 additions & 0 deletions autoware_internal_debug_msgs/msg/ProcessingTimeTree.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Array of all time nodes
ProcessingTimeNode[] nodes
3 changes: 3 additions & 0 deletions autoware_internal_planning_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ find_package(ament_cmake_auto REQUIRED)
ament_auto_find_build_dependencies()

rosidl_generate_interfaces(${PROJECT_NAME}
"msg/PathPoint.msg"
"msg/PathPointWithLaneId.msg"
"msg/PathWithLaneId.msg"
"msg/Scenario.msg"
DEPENDENCIES
builtin_interfaces
Expand Down
5 changes: 5 additions & 0 deletions autoware_internal_planning_msgs/msg/PathPoint.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
geometry_msgs/Pose pose
float32 longitudinal_velocity_mps
float32 lateral_velocity_mps
float32 heading_rate_rps
bool is_final
2 changes: 2 additions & 0 deletions autoware_internal_planning_msgs/msg/PathPointWithLaneId.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
autoware_internal_planning_msgs/PathPoint point
int64[] lane_ids
4 changes: 4 additions & 0 deletions autoware_internal_planning_msgs/msg/PathWithLaneId.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
std_msgs/Header header
autoware_internal_planning_msgs/PathPointWithLaneId[] points
geometry_msgs/Point[] left_bound
geometry_msgs/Point[] right_bound

0 comments on commit f1a8ce9

Please sign in to comment.