forked from moveit/panda_moveit_config
-
Notifications
You must be signed in to change notification settings - Fork 1
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
4 changed files
with
91 additions
and
58 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 |
---|---|---|
|
@@ -8,4 +8,4 @@ moveit_setup_assistant_config: | |
CONFIG: | ||
author_name: Tyler Weaver | ||
author_email: [email protected] | ||
generated_timestamp: 1601757998 | ||
generated_timestamp: 1608134967 |
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 @@ | ||
cartesian_limits: | ||
max_trans_vel: 1 | ||
max_trans_acc: 2.25 | ||
max_trans_dec: -5 | ||
max_rot_vel: 1.57 |
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
28 changes: 28 additions & 0 deletions
28
launch/pilz_industrial_motion_planner_planning_pipeline.launch.xml
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,28 @@ | ||
<launch> | ||
|
||
<!-- Pilz Command Planner Plugin for MoveIt --> | ||
<arg name="planning_plugin" value="pilz_industrial_motion_planner::CommandPlanner" /> | ||
|
||
<!-- The request adapters (plugins) used when planning. | ||
ORDER MATTERS --> | ||
<arg name="planning_adapters" value="" /> | ||
|
||
<!-- define capabilites that are loaded on start (space seperated) --> | ||
<arg name="capabilities" default=""/> | ||
|
||
<!-- inhibit capabilites (space seperated) --> | ||
<arg name="disable_capabilities" default=""/> | ||
|
||
<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)" /> | ||
|
||
<!-- MoveGroup capabilities to load, append sequence capability --> | ||
<param name="capabilities" value="$(arg capabilities) | ||
pilz_industrial_motion_planner/MoveGroupSequenceAction | ||
pilz_industrial_motion_planner/MoveGroupSequenceService | ||
" /> | ||
<param name="disable_capabilities" value="$(arg disable_capabilities)" /> | ||
</launch> |