forked from moveit/moveit2
-
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
8 changed files
with
68 additions
and
46 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
4 changes: 4 additions & 0 deletions
4
moveit_ros/hybrid_planning/local_planner/local_constraint_solver_plugins/CMakeLists.txt
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 |
---|---|---|
@@ -1,9 +1,13 @@ | ||
# Forward Trajectory Solver | ||
generate_parameter_library(forward_trajectory_parameters res/forward_trajectory_parameters.yaml) | ||
add_library(forward_trajectory_plugin SHARED src/forward_trajectory.cpp) | ||
set_target_properties(forward_trajectory_plugin PROPERTIES VERSION "${${PROJECT_NAME}_VERSION}") | ||
target_link_libraries(forward_trajectory_plugin forward_trajectory_parameters) | ||
ament_target_dependencies(forward_trajectory_plugin ${THIS_PACKAGE_INCLUDE_DEPENDS}) | ||
|
||
# Servo Local Solver | ||
generate_parameter_library(servo_solver_parameters res/servo_solver_parameters.yaml) | ||
add_library(servo_local_solver_plugin SHARED src/servo_solver.cpp) | ||
set_target_properties(servo_local_solver_plugin PROPERTIES VERSION "${${PROJECT_NAME}_VERSION}") | ||
target_link_libraries(servo_local_solver_plugin servo_solver_parameters) | ||
ament_target_dependencies(servo_local_solver_plugin ${THIS_PACKAGE_INCLUDE_DEPENDS}) |
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
6 changes: 6 additions & 0 deletions
6
...ning/local_planner/local_constraint_solver_plugins/res/forward_trajectory_parameters.yaml
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,6 @@ | ||
forward_trajectory_parameters: | ||
stop_before_collision: { | ||
type: bool, | ||
description: "If a collision is detected should the robot stop at the current pose or continue executing", | ||
default_value: false, | ||
} |
8 changes: 8 additions & 0 deletions
8
...d_planning/local_planner/local_constraint_solver_plugins/res/servo_solver_parameters.yaml
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,8 @@ | ||
servo_solver_parameters: | ||
reference_frame: { | ||
type: string, | ||
description: "Frame that is tracked by servo", | ||
#validation: { | ||
# not_empty<>: [] | ||
#} | ||
} |
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
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