02-16-2009 10:10 PM
02-17-2009 03:21 PM
I haven't seen this error but I suspect it means that the watchdog timer timed out, which means you probably have an infinite loop somewhere in your code that's preventing your code from feeding the watchdog. Most likely you have a subVI with a while loop containing a shift register that you're using to store data from one loop iteration to the next, but you've accidentally wired the stop condition of that while loop so that it never stops. Try using syntax highlighting to see if there's a point where your code stops running.