forked from robotics-in-concert/rocon_demo_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#Action Goal | ||
|
||
string order_id | ||
string from | ||
string to | ||
string message | ||
--- | ||
#Action Result | ||
|
||
string order_id | ||
bool success | ||
string message | ||
--- | ||
#Action Feedback | ||
|
||
P2PDeliveryStatus delivery_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,16 @@ | ||
int8 IDLE = 10 | ||
int8 GO_TO_PICKUP = 20 | ||
int8 ARRIVAL_AT_PICKUP = 30 | ||
int8 WAITING_FOR_PICKUP_CONFIRM = 40 | ||
int8 GO_TO_RECEIVER = 51 | ||
int8 ARRIVAL_AT_RECEIVER = 52 | ||
int8 WAITING_FOR_RECEIVER_CONFIRM = 53 | ||
int8 COMPLETE_DELIVERY = 54 | ||
int8 COMPLETE_ALL_DELIVERY = 60 | ||
int8 RETURN_TO_DOCK = 70 | ||
int8 COMPLETE_RETURN = 80 | ||
int8 ERROR = -10 | ||
|
||
string order_id | ||
string target_goal | ||
int8 status |