Skip to content

Commit

Permalink
Merge pull request #234 from gavanderhoorn/fix_base_sia_series
Browse files Browse the repository at this point in the history
SIA robots: fix ros-i base frame parent.
  • Loading branch information
shaun-edwards authored Aug 27, 2018
2 parents 8e46584 + 75f8ce4 commit 2beea06
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions motoman_sia10d_support/urdf/sia10d.urdf
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,9 @@
</joint>

<link name="base"/>
<joint name="link_l-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0"/>
<parent link="link_l"/>
<joint name="base_link-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0.360"/>
<parent link="base_link"/>
<child link="base"/>
</joint>
</robot>
Expand Down
8 changes: 4 additions & 4 deletions motoman_sia10d_support/urdf/sia10d_macro.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,11 @@
</joint>
<!-- end of joint list -->

<!-- ROS base_link (via link_l) to Motoman Robot (not Base) Frame transform -->
<!-- ROS base_link (via base_link) to Motoman Robot (not Base) Frame transform -->
<link name="${prefix}base" />
<joint name="${prefix}link_l-base" type="fixed">
<origin xyz="0 0 0" rpy="0 0 0"/>
<parent link="${prefix}link_l"/>
<joint name="${prefix}base_link-base" type="fixed">
<origin xyz="0 0 0.360" rpy="0 0 0"/>
<parent link="${prefix}base_link"/>
<child link="${prefix}base"/>
</joint>
</xacro:macro>
Expand Down
6 changes: 3 additions & 3 deletions motoman_sia10f_support/urdf/sia10f.urdf
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@
<limit effort="100" lower="-3.1415" upper="3.1415" velocity="6.9813" />
</joint>
<link name="base"/>
<joint name="link_l-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0"/>
<parent link="link_l"/>
<joint name="base_link-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0.360"/>
<parent link="base_link"/>
<child link="base"/>
</joint>
</robot>
8 changes: 4 additions & 4 deletions motoman_sia10f_support/urdf/sia10f_macro.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@
</joint>
<!-- end of joint list -->

<!-- ROS base_link (via link_l) to Motoman Robot (not Base) Frame transform -->
<!-- ROS base_link (via base_link) to Motoman Robot (not Base) Frame transform -->
<link name="${prefix}base" />
<joint name="${prefix}link_2_l-base" type="fixed">
<origin xyz="0 0 0" rpy="0 0 0"/>
<parent link="${prefix}link_2_l"/>
<joint name="${prefix}base_link-base" type="fixed">
<origin xyz="0 0 0.360" rpy="0 0 0"/>
<parent link="${prefix}base_link"/>
<child link="${prefix}base"/>
</joint>
</xacro:macro>
Expand Down
6 changes: 3 additions & 3 deletions motoman_sia20d_support/urdf/sia20d.urdf
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,9 @@
</joint>

<link name="base"/>
<joint name="link_l-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0"/>
<parent link="link_l"/>
<joint name="base_link-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0.410"/>
<parent link="base_link"/>
<child link="base"/>
</joint>
</robot>
Expand Down
8 changes: 4 additions & 4 deletions motoman_sia20d_support/urdf/sia20d_macro.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@
</joint>
<!-- end of joint list -->

<!-- ROS base_link (via link_l) to Motoman Robot (not Base) Frame transform -->
<!-- ROS base_link (via base_link) to Motoman Robot (not Base) Frame transform -->
<link name="${prefix}base" />
<joint name="${prefix}link_l-base" type="fixed">
<origin xyz="0 0 0" rpy="0 0 0"/>
<parent link="${prefix}link_l"/>
<joint name="${prefix}base_link-base" type="fixed">
<origin xyz="0 0 0.410" rpy="0 0 0"/>
<parent link="${prefix}base_link"/>
<child link="${prefix}base"/>
</joint>
</xacro:macro>
Expand Down
8 changes: 4 additions & 4 deletions motoman_sia5d_support/urdf/sia5d.urdf
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@
<parent link="link_t"/>
<child link="tool0"/>
</joint>
<!-- ROS base_link (via link_l) to Motoman Robot (not Base) Frame transform -->
<!-- ROS base_link (via base_link) to Motoman Robot (not Base) Frame transform -->
<link name="base"/>
<joint name="link_l-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0"/>
<parent link="link_l"/>
<joint name="base_link-base" type="fixed">
<origin rpy="0 0 0" xyz="0 0 0.310"/>
<parent link="base_link"/>
<child link="base"/>
</joint>
</robot>
8 changes: 4 additions & 4 deletions motoman_sia5d_support/urdf/sia5d_macro.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@
<child link="${prefix}tool0" />
</joint>

<!-- ROS base_link (via link_l) to Motoman Robot (not Base) Frame transform -->
<!-- ROS base_link (via base_link) to Motoman Robot (not Base) Frame transform -->
<link name="${prefix}base" />
<joint name="${prefix}link_l-base" type="fixed">
<origin xyz="0 0 0" rpy="0 0 0"/>
<parent link="${prefix}link_l"/>
<joint name="${prefix}base_link-base" type="fixed">
<origin xyz="0 0 0.310" rpy="0 0 0"/>
<parent link="${prefix}base_link"/>
<child link="${prefix}base"/>
</joint>
</xacro:macro>
Expand Down

0 comments on commit 2beea06

Please sign in to comment.