-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from clearpathrobotics/ONAV-1926
Add a new mission manager service to import single missions
- Loading branch information
Showing
3 changed files
with
12 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
5 changes: 5 additions & 0 deletions
5
clearpath_outdoornav_msgs/clearpath_mission_manager_msgs/srv/DeleteMultiple.srv
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,5 @@ | ||
# A list of UUIDs of items we want to delete | ||
string[] uuids | ||
--- | ||
# A list of UUIDs that we were asked to delete, but failed to | ||
string[] failed_uuids |
5 changes: 5 additions & 0 deletions
5
clearpath_outdoornav_msgs/clearpath_mission_manager_msgs/srv/ImportMission.srv
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,5 @@ | ||
# The Mission to import. All UUIDs will be re-generated | ||
clearpath_navigation_msgs/Mission mission | ||
--- | ||
# The generated mission with new UUIDs | ||
clearpath_navigation_msgs/Mission mission |