From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

DAQ Assistant: Reading samples that are no longer available

Solved!
Go to solution

I'm trying to use the DAQ Assistant to read in some voltage data, but I keep getting "Error -200279 occured at DAQmc Read (Analog 1D Wfm NChan NSamp).vi:2. The error message suggests increasing the buffer size, reading the data more frequently, or specifying a fixed number of samples to read instead of reading all available samples. My timing settings are as follows: Continuous Samples for Acquisition Mode, 1K Samples to Read, 1K Sample Rate (Hz). I'm curious what would be the optimal settings for this. If I set the mode to 1 Sample (On Demand), would that simply take a sample each time the loop runs? Please help.

 

Thanks,

Brian

0 Kudos
Message 1 of 6
(3,024 Views)
Buffer overflow errors occur when data is written to the buffer faster than it is being read off of it. Buffer underflow errors occur when data is being read off the buffer faster than new data is being added. In order to avoid either of these, a general rule of thumb for NI devices is to acquire around 1/10th of a second of data. For example, for a sample rate of 1000 Hz, set samples to read at 100 samples.
Adnan Zafar
Certified LabVIEW Architect
Coleman Technologies
Message 2 of 6
(3,016 Views)
Solution
Accepted by topic author bcglaxer

Brian,

 

Thank you for posting on the NI Forums.  Adnan is right about why you are getting this error. If you use On Demand sampling you will only get a value returned for every iteration of the loop. If you only need to sample every so often and it does not need to be highly consistent then this could work for your applications, but it depends on what type of application you have. At what speed do you need to sample? 

Aaron W.
National Instruments
CLA, CTA and CPI
Message 3 of 6
(2,985 Views)

Thanks for the general rule of thumb. I'll give it a try.

 

Brian

0 Kudos
Message 4 of 6
(2,975 Views)
Thanks for the general rule of thumb. I'm trying to implement the data acquisition within a simulation loop from the Control Design & Simulation Toolkit to control a custom actuator, and I'm still getting buffer overflow errors. Could that be because the rest of my .vi is too slow to keep up?
0 Kudos
Message 5 of 6
(2,970 Views)

Thanks, Aaron. On Demand seems to have fixed this particular problem, though I'm sure more will pop up 🙂

 

Brian

0 Kudos
Message 6 of 6
(2,968 Views)