-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Takagi, Isamu <[email protected]>
- Loading branch information
1 parent
32fb890
commit fd8be4e
Showing
4 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
string key | ||
string value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
uint8 UNKNOWN = 0 | ||
uint8 DEACTIVATE = 1 | ||
uint8 ACTIVATE = 2 | ||
uint8 UNDECIDED = 3 | ||
uint8 WAIT = 1 | ||
uint8 EXECUTE = 2 | ||
uint8 NONE = 3 | ||
uint8 FORCE = 4 | ||
|
||
uint8 decision |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# constants for state | ||
uint8 UNKNOWN = 0 | ||
uint8 WAITING = 1 | ||
uint8 EXECUTING = 2 | ||
uint8 ABORTING = 3 | ||
uint8 SUCCEEDED = 4 | ||
uint8 FAILED = 5 | ||
|
||
# variables | ||
unique_identifier_msgs/UUID uuid | ||
uint8 state | ||
autoware_adapi_v1_msgs/CooperationDecision autonomous | ||
autoware_adapi_v1_msgs/CooperationDecision cooperator | ||
autoware_adapi_v1_msgs/KeyValue[] values |