Skip to content

Commit

Permalink
No slash in links (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
alaflaquiere authored Oct 27, 2023
1 parent f7b3472 commit 1c0d3df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/multiple_robot_arms/multiple_robot_arms_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Our multiple arms model has ``right_arm`` and ``left_arm`` robots. Each arm is e

Notes:

1. Two arguments ``right_arm`` and ``left_arm`` are defined as prefixes to differentiate the arms and hands names.
1. Two arguments ``right_arm`` and ``left_arm`` are defined as prefixes to differentiate the arms and hands names. Be careful not to use any of the following characters in the prefixes: ``-``, ``[``, ``]``, ``(``, ``)``, ``/``.

2. The arms and hands models are loaded from the ``franka_description`` package, which is installed as a dependency of the ``panda_moveit_config`` package. Ensure the ``franka_description`` package is installed in your ROS environment.

Expand Down
7 changes: 6 additions & 1 deletion doc/urdf_srdf/urdf_srdf_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@ This section contains a set of tips on making sure that the URDF that you genera

Special Characters in Joint Names
"""""""""""""""""""""""""""""""""
Joint names should not contain any of the following special characters: -,[,],(,),
Joint names should not contain any of the following special characters: ``-``, ``[``, ``]``, ``(``, ``)``.

We hope to be able to get rid of these restrictions on the joint names soon.

Special Characters in Link Names
"""""""""""""""""""""""""""""""""
Link names should not contain any of the following characters: ``-``, ``[``, ``]``, ``(``, ``)``.
Link names also should not include any ``/`` character, as Moveit will interpret any such slash as a separator for a subframe (see `Subframes <https://ros-planning.github.io/moveit_tutorials/doc/subframes/subframes_tutorial.html#/>`_). We suggest to use ``_``, ``:``, or ``\`` instead.

Safety Limits
"""""""""""""
Some URDFs have safety limits set in addition to the joint limits of the robot. Here's an example of the safety controller specified for the Panda head pan joint: ::
Expand Down

0 comments on commit 1c0d3df

Please sign in to comment.