Data Acquisition start(): NumScans argument ignored
9 views (last 30 days)
Show older comments
I have a function that is called during my program that looks like the following:
function outputSingle(obj, magnitude)
stop(obj.dataAq);
flush(obj.dataAq);
preload(obj.dataAq, Write.getData(magnitude, obj));
start(obj.dataAq, "NumScans", 1);
end
start() in it gives the following message: "Warning: NumScans argument ignored."
The output is started earlier in another function with:
start(obj.dataAq, "RepeatOutput");
But as you can see in the first code section it is stopped and flushed.
I have confirmed that the output signal is being repeated when NumScans is ignored.
Can anyone answer why NumScans is being ignored, and how to fix this?
0 Comments
Answers (1)
Srishti Sahni
on 18 May 2022
I understand that the ignored argument, "NumScans" for the start() function is a cause of concern for you.
The function start(d,"NumScans",span) starts the background input acquisition to run for a finite span of time, specified as a number of scans. If the DataAcquisition has any output channels, the start occurs but the duration specification is ignored.
If you want to avoid this behaviour, please examine the output channels within DataAcquisition.
More details about the start() function and this behavior can be found on the following link: Start DataAcquisition background operation - MATLAB start (mathworks.com)
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!