I have a program that is basically continuously enabled. Based on the state of a relay, I want to skip about 10 rungs at the end of the program (these will skip most of the time).
I don't want to EXIT, because that would require the program to be reenabled, and even though it's continuously enabled, I think RUN needs an edge to restart IIRC (and I can't check the help due to the help issue from my other thread). I could JUMP to a LABEL, or add something toggling to the RUN, but I was wondering if an ENDC would work, defined as ending this scan of the program while leaving it enabled for next scan.