Skip to content

Commit 6475e8e

Browse files
authored
urdf file name corrected to avoid launch errors (#715)
1 parent 81a4bf0 commit 6475e8e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

doc/bullet_collision_checker/launch/bullet_collision_checker_tutorial.launch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<launch>
22

33
<!-- load URDF -->
4-
<param name="robot_description" command="$(find xacro)/xacro --inorder '$(find franka_description)/robots/panda_arm_hand.urdf.xacro'"/>
4+
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm.urdf.xacro hand:=true'" />
55

66
<!-- load SRDF -->
7-
<param name="robot_description_semantic" command="$(find xacro)/xacro --inorder '$(find panda_moveit_config)/config/panda_arm_hand.srdf.xacro'"/>
7+
<param name="robot_description_semantic" command="$(find xacro)/xacro '$(find panda_moveit_config)/config/panda_arm_hand.srdf.xacro'" />
88

99
<!-- Run RViz with a custom config -->
1010
<node name="$(anon rviz)" pkg="rviz" type="rviz" respawn="false" args="-d $(find moveit_tutorials)/doc/bullet_collision_checker/launch/moveit.rviz" output="screen">

doc/gazebo_simulation/gazebo_simulation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ the procedure outlined in there will be repeated (with improvements) in here as
2727

2828
1. Fix the robot to the world coordinate system
2929
-----------------------------------------------
30-
Open the :code:`franka_description/robots/panda_arm_hand.urdf.xacro` file and change the line 5 with:
30+
Open the :code:`franka_description/robots/panda_arm.urdf.xacro` file and change the line 5 with:
3131

3232
.. code-block:: xml
3333
3434
<xacro:panda_arm xyz="0 0 0" rpy="0 0 0" connected_to="world"/>
3535
3636
It alone doesn't fix the problem, since now we need to provide a link with name :code:`world`. Add the following line to
37-
:code:`franka_description/robots/panda_arm_hand.urdf.xacro`:
37+
:code:`franka_description/robots/panda_arm.urdf.xacro`:
3838

3939
.. code-block:: xml
4040
@@ -306,7 +306,7 @@ with :code:`<param name="robot_description" textfile="$(arg urdf_path)" />` and
306306

307307
.. code-block:: xml
308308
309-
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm_hand.urdf.xacro'"/>
309+
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm.urdf.xacro'"/>
310310
311311
312312
With this adjustment we are using :code:`xacro` executable that compiles :code:`xacro` files into URDF files.

doc/planning_scene/launch/planning_scene_tutorial.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<launch>
22
<!-- send Panda urdf to parameter server -->
3-
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm_hand.urdf.xacro'" />
3+
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm.urdf.xacro' hand:=true" />
44

55
<include file="$(find panda_moveit_config)/launch/planning_context.launch"/>
66

doc/setup_assistant/setup_assistant_tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ Step 1: Start
4949

5050
.. image:: setup_assistant_start.png
5151

52-
* Click on the browse button and navigate to the *panda_arm_hand.urdf.xacro* file
52+
* Click on the browse button and navigate to the *panda_arm.urdf.xacro* file
5353
installed when you installed the Franka package above. (This file
5454
gets installed in
55-
/opt/ros/noetic/share/franka_description/robots/panda_arm_hand.urdf.xacro on Ubuntu
55+
/opt/ros/noetic/share/franka_description/robots/panda_arm.urdf.xacro on Ubuntu
5656
with ROS Noetic.) Choose that file and then click *Load Files*. The
5757
Setup Assistant will load the files (this might take a few seconds)
5858
and present you with this screen:

doc/visualizing_collisions/launch/visualizing_collisions_tutorial.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<launch>
22

33
<!-- load URDF -->
4-
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm_hand.urdf.xacro'"/>
4+
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm.urdf.xacro' hand:=true" />
55

66
<!-- load SRDF -->
77
<param name="robot_description_semantic" command="$(find xacro)/xacro '$(find panda_moveit_config)/config/panda_arm_hand.srdf.xacro'"/>

0 commit comments

Comments
 (0)