Hi everyone,
I’m debugging a program with the following code
Code
if (watch(diLatch == true, 20) == false) {
popUpMsg("Error: Waiting for signal");
wait(diLatch == true);
}
if (diLatch == true) {
setLatch(diLatch);
delay(0.2);
bLatch = watch(getLatch(jPosition) == true, 5);
}
Will it work or not?
Can someone give me advice?
Thank you for your help.
Best regards,
Vi