-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tier4_planning_msgs): add internal route interface
Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
- Loading branch information
1 parent
29d1db4
commit d2f983a
Showing
6 changed files
with
36 additions
and
0 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,11 @@ | ||
uint8 UNKNOWN = 0 | ||
uint8 INITIALIZING = 1 | ||
uint8 UNSET = 2 | ||
uint8 ROUTING = 3 | ||
uint8 SET = 4 | ||
uint8 REROUTING = 5 | ||
uint8 ARRIVED = 6 | ||
uint8 ABORTED = 7 | ||
|
||
builtin_interfaces/Time stamp | ||
uint8 state |
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 @@ | ||
--- | ||
autoware_common_msgs/ResponseStatus status |
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,7 @@ | ||
std_msgs/Header header | ||
geometry_msgs/Pose goal_pose | ||
autoware_planning_msgs/LaneletSegment[] segments | ||
unique_identifier_msgs/UUID uuid | ||
bool allow_modification | ||
--- | ||
autoware_common_msgs/ResponseStatus status |
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,7 @@ | ||
std_msgs/Header header | ||
geometry_msgs/Pose goal_pose | ||
geometry_msgs/Pose[] waypoints | ||
unique_identifier_msgs/UUID uuid | ||
bool allow_modification | ||
--- | ||
autoware_common_msgs/ResponseStatus status |