Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_internal_debug_msgs): add ProcessingTime msgs
Browse files Browse the repository at this point in the history
Signed-off-by: liu cui <cynthia.liu@autocore.ai>
cyn-liu committed Jan 7, 2025
1 parent 36a9d2e commit 0322d51
Showing 3 changed files with 14 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
@@ -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
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

0 comments on commit 0322d51

Please sign in to comment.