Skip to content

Commit

Permalink
feat(tier4_autoware_msgs): add timenode.msg and timetree.msg (#137)
Browse files Browse the repository at this point in the history
* feat(tier4_autoware_msgs): add TimeNode.msg and TimeTree.msg

Signed-off-by: Y.Hisaki <[email protected]>

* rename

Signed-off-by: Y.Hisaki <[email protected]>

* fix miss

Signed-off-by: Y.Hisaki <[email protected]>

---------

Signed-off-by: Y.Hisaki <[email protected]>
  • Loading branch information
yhisaki committed Jul 4, 2024
1 parent 5cf56e7 commit e5b219f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tier4_debug_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/Int64Stamped.msg"
"msg/Int64MultiArrayStamped.msg"
"msg/StringStamped.msg"
"msg/ProcessingTimeNode.msg"
"msg/ProcessingTimeTree.msg"
DEPENDENCIES
builtin_interfaces
builtin_interfaces
)

if(BUILD_TESTING)
Expand Down
8 changes: 8 additions & 0 deletions tier4_debug_msgs/msg/ProcessingTimeNode.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 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
2 changes: 2 additions & 0 deletions tier4_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

0 comments on commit e5b219f

Please sign in to comment.