File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ thread torqueThread():
273
273
{% if ROBOT_SOFTWARE_VERSION >= v5.22.0 %} # ToDo: Increase to 5.23.0 once released
274
274
{% if ROBOT_SOFTWARE_VERSION < v6.0.0 %}
275
275
direct_torque(torque, friction_comp=friction_compensation_enabled)
276
- {% elif ROBOT_SOFTWARE_VERSION >= v10.10 .0 %}
276
+ {% elif ROBOT_SOFTWARE_VERSION >= v10.11 .0 %}
277
277
direct_torque(torque, friction_comp=friction_compensation_enabled)
278
278
{% else %}
279
279
popup("Torque control is only supported from software 10.10.0 and upwards.", error=True, blocking=True)
@@ -693,7 +693,7 @@ thread PDControlThread():
693
693
local tau = pd_controller_gains.kp * q_err - pd_controller_gains.kd * get_actual_joint_speeds()
694
694
tau = clamp_array(tau, max_joint_torques)
695
695
direct_torque(tau, friction_comp=friction_compensation_enabled)
696
- {% elif ROBOT_SOFTWARE_VERSION >= v10.10 .0 %}
696
+ {% elif ROBOT_SOFTWARE_VERSION >= v10.11 .0 %}
697
697
local tau = pd_controller_gains.kp * q_err - pd_controller_gains.kd * get_actual_joint_speeds()
698
698
tau = clamp_array(tau, max_joint_torques)
699
699
direct_torque(tau, friction_comp=friction_compensation_enabled)
You can’t perform that action at this time.
0 commit comments