06-02-2014 05:58 AM
Hello,
I have this vi in labview that stops unexpectadly, no error code, no error, nothing. It just stops, as if someone pressed a stop button. With the probe i managed to see that it always crashes when the inner while's condition is true for a longer perioud of time. When i press "run continuously" the program runs for a couple of times then it stops. Can someone help, please?
06-02-2014 07:37 AM
I would first start by moving your Load FPGA and Close FPGA code outside of your main loop.
You are flushing a queue after it was closed. That doesn't make any sense either.
Since you are running your inner loop a set number of times, change it to a FOR loop. That will simplify things a little.