Skip to content

Commit

Permalink
Merge pull request #26 from clearpathrobotics/ONAV-1926
Browse files Browse the repository at this point in the history
Add a new mission manager service to import single missions
  • Loading branch information
civerachb-cpr authored Dec 15, 2023
2 parents a9841c1 + ae1359f commit 4ec1ad6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ add_service_files(
CreateWaypoint.srv
DeleteById.srv
DeleteEverything.srv
DeleteMultiple.srv
ExportData.srv
GetAllMissions.srv
GetAllTasks.srv
Expand All @@ -31,6 +32,7 @@ add_service_files(
GetTask.srv
GetWaypoint.srv
ImportData.srv
ImportMission.srv
UpdateMission.srv
UpdateTask.srv
UpdateWaypoint.srv
Expand Down
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
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

0 comments on commit 4ec1ad6

Please sign in to comment.