Skip to content
Snippets Groups Projects
Commit b351e8ab authored by Rick Staa's avatar Rick Staa Committed by Robert Haschke
Browse files

Add LERP config files

Adds files needed to run the
[lerp_planning_example](https://ros-planning.github.io/moveit_tutorials/doc/creating_moveit_plugins/plugin_tutorial.html)
parent e3dcf60b
No related branches found
No related tags found
No related merge requests found
num_steps: 40
<launch>
<include file="$(dirname)/demo.launch">
<arg name="pipeline" value="lerp"/>
</include>
</launch>
\ No newline at end of file
<launch>
<!-- LERP Plugin for MoveIt! -->
<arg name="planning_plugin" value="lerp_interface/LERPPlanner" />
<!-- The request adapters (plugins) used when planning with TrajOpt.
ORDER MATTERS -->
<arg name="planning_adapters" value="default_planner_request_adapters/AddTimeParameterization
default_planner_request_adapters/FixWorkspaceBounds
default_planner_request_adapters/FixStartStateBounds
default_planner_request_adapters/FixStartStateCollision
default_planner_request_adapters/FixStartStatePathConstraints" />
<arg name="start_state_max_bounds_error" value="0.1" />
<param name="planning_plugin" value="$(arg planning_plugin)" />
<param name="request_adapters" value="$(arg planning_adapters)" />
<param name="start_state_max_bounds_error" value="$(arg start_state_max_bounds_error)" />
<rosparam command="load" file="$(find panda_moveit_config)/config/lerp_planning.yaml"/>
</launch>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment