Skip to content

Commit

Permalink
Merge pull request #172 from mi01/Fix_Xacro_NS
Browse files Browse the repository at this point in the history
Fix deprecated xacro syntax without namespace prefix
  • Loading branch information
jproberge authored Dec 22, 2019
2 parents 4e3196c + 78fbdd5 commit 66961ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ there are multiple hands then a prefix followed by an "_" is needed.

<!-- joint attaching parent link to robotiq hand -->
<joint name="${prefix}robotiq_hand_joint" type="fixed">
<insert_block name="origin"/>
<xacro:insert_block name="origin"/>
<parent link="${parent}"/>
<child link="${prefix}palm"/>
</joint>
Expand Down
2 changes: 1 addition & 1 deletion robotiq_ft_sensor/urdf/robotiq_ft300.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<!-- mount the fts to the robot -->
<joint name="${prefix}ft300_fix" type="fixed">
<insert_block name="origin" />
<xacro:insert_block name="origin" />
<parent link="${parent}" />
<child link="${prefix}ft300_mounting_plate" />
</joint>
Expand Down
2 changes: 1 addition & 1 deletion robotiq_ft_sensor/urdf/robotiq_fts150.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- mount the fts to the robot -->
<joint name="${prefix}fts_fix" type="fixed" >
<!--In most cases origin would be flange adapter plate: <origin xyz="0 0 0.009" rpy="0 0 0"/> /-->
<insert_block name="origin" />
<xacro:insert_block name="origin" />
<parent link="${parent}" />
<child link="${prefix}fts_robotside" />
</joint>
Expand Down

0 comments on commit 66961ec

Please sign in to comment.