Skip to content

Commit dd2a1e8

Browse files
committed
Update friction_compensation name in urscript as well.
1 parent 3a636f0 commit dd2a1e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/external_control.urscript

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ global spline_qdd = [0, 0, 0, 0, 0, 0]
8282
global spline_qd = [0, 0, 0, 0, 0, 0]
8383
global tool_contact_running = False
8484
global trajectory_result = 0
85-
global friction_compensation = True
85+
global friction_compensation_enabled = True
8686

8787
# Global thread variables
8888
thread_move = 0
@@ -695,9 +695,9 @@ thread script_commands():
695695
tool_contact_running = False
696696
elif command == SET_FRICTION_COMPENSATION:
697697
if raw_command[2] == 0:
698-
friction_compensation = False
698+
friction_compensation_enabled = False
699699
else:
700-
friction_compensation = True
700+
friction_compensation_enabled = True
701701
end
702702
end
703703
end

0 commit comments

Comments
 (0)