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(tier4_system_msgs): control command gate messages #167

Draft
wants to merge 4 commits into
base: tier4/universe
Choose a base branch
from
Draft
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
8 changes: 8 additions & 0 deletions tier4_system_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,18 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/ServiceLog.msg"
"msg/ModeChangeAvailable.msg"
"msg/MrmBehaviorStatus.msg"
"msg/CommandSourceStatus.msg"
"msg/CommandModeAvailability.msg"
"msg/CommandModeAvailabilityItem.msg"
"msg/CommandModeRequest.msg"
"msg/CommandModeStatus.msg"
"msg/CommandModeStatusItem.msg"
"srv/OperateMrm.srv"
"srv/ChangeOperationMode.srv"
"srv/ChangeAutowareControl.srv"
"srv/ChangeTopicRelayControl.srv"
"srv/RequestMrm.srv"
"srv/SelectCommandSource.srv"
DEPENDENCIES
autoware_common_msgs
builtin_interfaces
Expand Down
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/CommandModeAvailability.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
builtin_interfaces/Time stamp
tier4_system_msgs/CommandModeAvailabilityItem[] items
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/CommandModeAvailabilityItem.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
string mode
bool available
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/CommandModeRequest.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
builtin_interfaces/Time stamp
string mode
2 changes: 2 additions & 0 deletions tier4_system_msgs/msg/CommandModeStatus.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
builtin_interfaces/Time stamp
tier4_system_msgs/CommandModeStatusItem[] items
10 changes: 10 additions & 0 deletions tier4_system_msgs/msg/CommandModeStatusItem.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
uint8 UNDEFINED = 0
uint8 NONE = 1
uint8 OPERATING = 2
uint8 SUCCEEDED = 3
uint8 FAILED = 4

string mode
bool activation
bool transition
uint8 mrm
4 changes: 4 additions & 0 deletions tier4_system_msgs/msg/CommandSourceStatus.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
builtin_interfaces/Time stamp
string source
bool transition
bool emergency
3 changes: 3 additions & 0 deletions tier4_system_msgs/srv/RequestMrm.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
string name
---
autoware_common_msgs/ResponseStatus status
3 changes: 3 additions & 0 deletions tier4_system_msgs/srv/SelectCommandSource.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
string source
---
autoware_common_msgs/ResponseStatus status
Loading