Skip to content

Commit 7d0544f

Browse files
Fix dt values in sot_params.launch
simulation and real robot values where switched.
1 parent 74aae64 commit 7d0544f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

launch/sot_params.launch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
<!-- Load robot sot params. -->
66
<group ns="sot_controller" if="$(eval robot == 'ur')">
77
<rosparam param="dt" if="$(arg simulation)">
8-
0.002
8+
0.01
99
</rosparam>
1010
<rosparam param="dt" unless="$(arg simulation)">
11-
0.01
11+
0.002
1212
</rosparam>
1313
</group>
1414
<group ns="sot_controller" if="$(eval robot == 'franka')">
1515
<rosparam param="dt" if="$(arg simulation)">
16-
0.001
16+
0.01
1717
</rosparam>
1818
<rosparam param="dt" unless="$(arg simulation)">
19-
0.01
19+
0.001
2020
</rosparam>
2121
</group>
2222
<!-- Sot Controller configuration -->

0 commit comments

Comments
 (0)