Hi,
Is there any system variable other than $move_enable or $drives_off to pause the program execution? Like not stopping the drives but just pausing the program pointer. I usually define an interrupt and then do the following
INTERRUPT DECL 5 WHEN diPause==TRUE DO Pause()
INTERRUPT ON 5
DEF Pause()
brake
wait for NOT diPause
END
I wanted to know if there is some other way of achieving this. Thank you.