Skip to content

Commit a98e633

Browse files
committed
Rename robots/panda_arm.urdf.xacro -> robots/panda/panda.urdf.xacro
1 parent adbd6cc commit a98e633

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

doc/bullet_collision_checker/launch/bullet_collision_checker_tutorial.launch

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

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

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

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.urdf.xacro` file and change the line 5 with:
30+
Open the :code:`franka_description/robots/panda/panda.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.urdf.xacro`:
37+
:code:`franka_description/robots/panda/panda.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.urdf.xacro'"/>
309+
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda/panda.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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<launch>
22
<!-- send Panda urdf to parameter server -->
3-
<param name="robot_description" command="$(find xacro)/xacro '$(find franka_description)/robots/panda_arm.urdf.xacro' hand:=true" />
3+
<param name="robot_description"
4+
command="$(find xacro)/xacro '$(find franka_description)/robots/panda/panda.urdf.xacro' hand:=true"/>
45

56
<include file="$(find panda_moveit_config)/launch/planning_context.launch"/>
67

doc/setup_assistant/setup_assistant_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Step 1: Start
5252
* 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.urdf.xacro on Ubuntu
55+
/opt/ros/noetic/share/franka_description/robots/panda/panda.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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<launch>
22

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

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

0 commit comments

Comments
 (0)