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: system diagnostic monitor message #96

Merged
merged 16 commits into from
Sep 15, 2023
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
4 changes: 4 additions & 0 deletions tier4_system_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ ament_auto_find_build_dependencies()

rosidl_generate_interfaces(${PROJECT_NAME}
"msg/AutowareState.msg"
"msg/DiagnosticGraph.msg"
"msg/DiagnosticLink.msg"
"msg/DiagnosticNode.msg"
"msg/OperationModeAvailability.msg"
"msg/EmergencyState.msg"
"msg/EmergencyStateStamped.msg"
"msg/HazardStatus.msg"
Expand Down
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/DiagnosticGraph.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
builtin_interfaces/Time stamp
tier4_system_msgs/DiagnosticNode[] nodes
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/DiagnosticLink.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
uint32 index # The index of the nodes in the DiagnosticGraph message.
bool used # Whether the linked node is used if the dependency is conditional.
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/DiagnosticNode.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
diagnostic_msgs/DiagnosticStatus status
tier4_system_msgs/DiagnosticLink[] links
8 changes: 8 additions & 0 deletions tier4_system_msgs/msg/OperationModeAvailability.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
builtin_interfaces/Time stamp
bool stop
bool autonomous
bool local
bool remote
bool emergency_stop
bool comfortable_stop
bool pull_over
Loading