forked from ros-industrial/reach_ros
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrobot.launch
19 lines (15 loc) · 857 Bytes
/
robot.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" ?>
<launch>
<!-- Load universal robot description format (URDF) -->
<param name="robot_description" command="$(find xacro)/xacro --inorder '$(find reach_ros)/demo/model/reach_study.xacro'" />
<!-- The semantic description that corresponds to the URDF -->
<param name="robot_description_semantic" textfile="$(find reach_ros)/demo/model/reach_study.srdf" />
<!-- Load updated joint limits (override information from URDF) -->
<group ns="robot_description_planning">
<rosparam command="load" file="$(find reach_ros)/demo/model/joint_limits.yaml"/>
</group>
<!-- Load default settings for kinematics; these settings are overridden by settings in a node's namespace -->
<group ns="robot_description_kinematics">
<rosparam command="load" file="$(find reach_ros)/demo/model/kinematics.yaml"/>
</group>
</launch>