-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds optional SRDF controller_box collision shapes
This change adds an optional controller_box collision shape to be in sync with the URDF from sawyer_description. This can be disabled, by invoking with controller_box:=false when invoking $roslaunch sawyer_moveit_config sawyer_moveit.launch It is set to true by default in order to prevent accidental trajectory executions through the controller box.
- Loading branch information
1 parent
a613747
commit 2f1efe4
Showing
4 changed files
with
32 additions
and
2 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" ?> | ||
<!--This does not replace URDF, and is not an extension of URDF. | ||
This is a format for representing semantic information about the robot structure. | ||
A URDF file must exist for this robot as well, where the joints and the links that are referenced are defined | ||
--> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="controller_box"> | ||
<xacro:macro name="controller_box"> | ||
<disable_collisions link1="pedestal" link2="pedestal_feet" reason="Adjacent" /> | ||
<disable_collisions link1="controller_box" link2="pedestal_feet" reason="Adjacent" /> | ||
</xacro:macro> | ||
</robot> |
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