-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplanning_context.launch
26 lines (19 loc) · 1.22 KB
/
planning_context.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<launch>
<!-- By default we do not overwrite the URDF. Change the following to true to change the default behavior -->
<arg name="load_robot_description" default="false"/>
<!-- The name of the parameter under which the URDF is loaded -->
<arg name="robot_description" default="robot_description"/>
<!-- Load universal robot description format (URDF) -->
<param if="$(arg load_robot_description)" name="$(arg robot_description)" textfile="$(find uvicarm2024)/urdf/uvicarm2024.urdf"/>
<!-- The semantic description that corresponds to the URDF -->
<param name="$(arg robot_description)_semantic" textfile="$(find moveitarm)/config/ASY, ROBOTIC ARM 2024, URDF.srdf" />
<!-- Load updated joint limits (override information from URDF) -->
<group ns="$(arg robot_description)_planning">
<rosparam command="load" file="$(find moveitarm)/config/joint_limits.yaml"/>
<rosparam command="load" file="$(find moveitarm)/config/cartesian_limits.yaml"/>
</group>
<!-- Load default settings for kinematics; these settings are overridden by settings in a node's namespace -->
<group ns="$(arg robot_description)_kinematics">
<rosparam command="load" file="$(find moveitarm)/config/kinematics.yaml"/>
</group>
</launch>