Skip to content

Commit aeee44e

Browse files
committed
Make popups non-blocking
Otherwise the CI will be hanging on older versions
1 parent e6c27c7 commit aeee44e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

resources/external_control.urscript

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -566,10 +566,10 @@ thread trajectoryThread():
566566
{% elif ROBOT_SOFTWARE_VERSION >= v10.8.0 %}
567567
optimovej(q, a = acceleration, v = velocity, r = blend_radius)
568568
{% else %}
569-
popup("Optimovej is only supported from software 10.8.0 and upwards.", error=True, blocking=True)
569+
popup("Optimovej is only supported from software 10.8.0 and upwards.", error=True, blocking=False)
570570
{% endif %}
571571
{% else %}
572-
popup("Optimovej is only supported from software 5.21.0 and upwards.", error=True, blocking=True)
572+
popup("Optimovej is only supported from software 5.21.0 and upwards.", error=True, blocking=False)
573573
{% endif %}
574574

575575
if DEBUG:
@@ -595,10 +595,10 @@ thread trajectoryThread():
595595
{% elif ROBOT_SOFTWARE_VERSION >= v10.8.0 %}
596596
optimovel(p[q[0], q[1], q[2], q[3], q[4], q[5]], a = acceleration, v = velocity, r = blend_radius)
597597
{% else %}
598-
popup("Optimovel is only supported from software 10.8.0 and upwards.", error=True, blocking=True)
598+
popup("Optimovel is only supported from software 10.8.0 and upwards.", error=True, blocking=False)
599599
{% endif %}
600600
{% else %}
601-
popup("Optimovel is only supported from software 5.21.0 and upwards.", error=True, blocking=True)
601+
popup("Optimovel is only supported from software 5.21.0 and upwards.", error=True, blocking=False)
602602
{% endif %}
603603

604604
if DEBUG:
@@ -876,4 +876,4 @@ socket_close("reverse_socket")
876876
socket_close("trajectory_socket")
877877
socket_close("script_command_socket")
878878

879-
# NODE_CONTROL_LOOP_ENDS
879+
# NODE_CONTROL_LOOP_ENDS

0 commit comments

Comments
 (0)