06-01-2005 02:12 PM
06-02-2005
02:49 PM
- last edited on
06-03-2025
01:05 PM
by
Content Cleaner
First I would recommmend upgrading from DAQmx Base 1.4 to DAQmx Base 1.5. Upgrading might help resolve some of the other issues. Also try running an example and see if the same type of behavior is noticed.
The error you are getting is related to the sampling rate. It sounds like you may be sampling so slowly that the device is timing out. Although, the error code you mentioned typically relates to those trying to sample faster than the device is capable of running. What may be the best workaround for your case is to try to oversample and average. Instead of that very slow rate, maybe take a few more samples at a faster rate, then you can simply do some math in your program to average the points acquired. This might also help to eliminate some of the error noticed in the glitches that you originally mentioned.
07-03-2009 01:37 AM
hi otis,
I am having the same problem but in my case i am acquiring Digital signal with a sampling rate of the time LabVIEW takes to fire between two successive loop iterations.
There is no Delay between the acquisition loop like wait for miliseconds to wait.
Even DAQ Assistant vi configured for the same acquisition gives glitches.
w
07-03-2009 01:43 AM
Please post your code.
The highest probabilty for these "Glitches" is that an untimed loop is hogging the CPU resources. Do you have a 'wait until ne mS multiple' in all of your for and while loops?
Other potential issues exist but, we can't check for them either without a vi.
07-04-2009 11:32 AM