Hello,
I am working with a UR5e and URP to create a program that runs indefinitely.
However, within about 1 hour of operation, I encounter a C271A1 error. I have tried all possible measures I could think of, but the issue persists.
To narrow it down, I tested with a very simple infinite loop, yet the same error still occurs.
Here is the code I tested:
def main():
popup("start")
while True:
sleep(1)
end
end
I also tried replacing sleep() with sync(), but the error still appears after 1–2 hours of runtime.
Even when increasing the sleep duration up to 3 seconds, the problem remains.
My PolyScope version is 5.13.
What could be causing this issue, and how can I resolve it?