07-28-2014 10:52 PM
Dear all,
I meet error 200279 at the first few senconds or running the VI for 1 minute. The VI is quite simple, I just use 5 channels to read the data. I've tried to increase the sample to read from 2.5K to 4K and to 5K. It seems make no difference.
BTW, the same VI works well with another PC (the same 6356).
What should I do to solve this problem?
Thanks
best
07-29-2014 06:16 AM
Need to see more of your code. Normally with this error it means you are not reading the data fast enough. So it is likely that there is something in your loop that is slowing it down. Since this works on another computer, I'm guessing it is writing the values to a file.
07-30-2014 01:20 AM
Dear Proven,
There is only a "build table" function in the loop. Is it slow down the reading speed of data? How should I make it faster?
I attached the VI for your reference.
Thanks
best
07-30-2014 06:32 AM
I would recommend going to a Producer/Consumer setup. The idea here is that you use another loop to build your table and/or write to your file. You send data to this extra loop using a queue. The two parallel loops can then run at their own rate.