Browse Source

Diff Drive Joint

feature/ros2_diffdrive
David V. Lu 3 years ago
parent
commit
6cc70efc6c
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      stretch_moveit_config/config/stretch_description.srdf

+ 7
- 1
stretch_moveit_config/config/stretch_description.srdf View File

@ -53,7 +53,13 @@
<!--END EFFECTOR: Purpose: Represent information about an end effector.-->
<end_effector name="gripper" parent_link="link_grasp_center" group="stretch_arm"/>
<!--VIRTUAL JOINT: Purpose: this element defines a virtual joint between a robot link and an external frame of reference (considered fixed with respect to the robot)-->
<virtual_joint name="position" type="planar" parent_frame="map" child_link="base_link"/>
<virtual_joint name="position" type="diff_drive" parent_frame="map" child_link="base_link">
<limit name="x" vel="0.1" acc="1.0" />
<limit name="y" vel="0.1" acc="1.0" />
<limit name="theta" vel="0.1" acc="1.0" />
</virtual_joint>
<!--DISABLE COLLISIONS: By default it is assumed that any link of the robot could potentially come into collision with any other link in the robot. This tag disables collision checking between a specified pair of links. -->
<disable_collisions link1="base_link" link2="camera_link" reason="Never"/>
<disable_collisions link1="base_link" link2="laser" reason="Adjacent"/>

Loading…
Cancel
Save