forked from naturerobots/move_base_flex
-
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.
feat: Add RefinePlan.srv (naturerobots#1)
- Loading branch information
1 parent
a1a3dc6
commit 326fa3d
Showing
2 changed files
with
13 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 |
---|---|---|
|
@@ -18,6 +18,7 @@ add_service_files( | |
FILES | ||
CheckPoint.srv | ||
CheckPose.srv | ||
RefinePlan.srv | ||
CheckPath.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,12 @@ | ||
#Plan to be refined considering possible obstacles along the path | ||
nav_msgs/Path plan | ||
|
||
# If the goal is obstructed, how many meters the planner can | ||
# relax the constraint in x and y before failing. | ||
float32 tolerance | ||
--- | ||
#Refined plan | ||
nav_msgs/Path refined_plan | ||
|
||
#True if refining the given plan was possible, otherwise False | ||
bool success |