Analog Outputs stops (without reason) ?!

8 views (last 30 days)
Tobias
Tobias on 14 Dec 2011
Hey everybody!
I hope one of you can help me!
I am working on a Programm using DAQ-Toolbox and a National Instruments I/O USB Card. I am trying to output data continuously by using an analog outputobject. It got a Samplerate of 100 and 100 Values get enqueued before the object is started. After start a timerfunction enqueues new Data by using "putdata". The first 100 Samples are output fine but than the object stops though there are still 400 Values in the queue. It stops without any error message.
Why does the object stop?
In my opinion the object should run until no more data is left in the queue... .
If you need further information for an answer just let me know!

Answers (3)

Walter Roberson
Walter Roberson on 14 Dec 2011
Usually USB buffers data until the USB packet size (close to 1000 bytes) is met. If your data is 2 bytes per sample, your buffer is getting drained until less than ~1000 bytes is left.
USB is not suitable for continual output of short packets -- at least not without getting in to details of USB that Mathworks has never exposed the user to.
  1 Comment
Tobias
Tobias on 14 Dec 2011
Hey Walter!
Thanks for caring about my problem!
I dont think that it is a USB-problem because I use the following line to show in the command window how much Data is already IN the Hardware ready to be send.
readyToOutput=hObj.SamplesAvailable
And this command shows before the analog object stops that 400 Values are queued and waiting for being output. After the object stopped this property is set to zero.
So, what do you think?

Sign in to comment.


Chirag Gupta
Chirag Gupta on 14 Dec 2011
Can you post bit of the code? Also are you using the new Session based interface (R2011b) or the legacy interface ?
If you are using the legacy interface (analogoutput object) then you might need to set this property:
  1 Comment
Tobias
Tobias on 14 Dec 2011
Hey Chirag!
Also thanks for caring about my problem!
I am using Matlab 2011. I can`t specify which version in detail at the moment as I am at home and not at college.
The problem occours in the part of the programm where I use the legacy-inferface. I am not using the session-based-interface in this part of the programm as I need continuous data to create a "Liveplot" of a stepresponse.
I think the session-based-aquisition isn`t made for getting continuously data for a "liveplot" or am I wrong?
I ve read already the documentation about "repeatoutput" and understood it that way that this function takes the already enqueued data an outputs it in a loop so many times as you enter. That makes this function worthless to me because I musst be able to enqueue NEW data due to the timer function.
So here is my code:
%% Declare continuous analog Output
% Outputobjekt erzeugen
gDyn_ao=analogoutput('nidaq','Dev3');
%Outputkanäle an Objekt anfügen
addchannel(gDyn_ao,1); % Heizer
%Sprung von
firstData(1)=gDyn_von;
%Initialen Datensatz erzeugen
for h=2:gDyn_sampleRate
firstData(h)=gDyn_bis; %Heizer
end
%TimerfunctionCallback deklarieren und ersten Datensatz übergeben
set(gDyn_ao,'TimerFcn',{@ao_enqueueMoreData,firstData});
%Set Time to trigger TimerfunctionCallback
period=((gDyn_ao.SampleRate*0.1)/gDyn_ao.SampleRate);
set(gDyn_ao,'TimerPeriod',period);
%Schreibrate setzen
set(gDyn_ao,'SampleRate',gDyn_sampleRate);
% Ersten Daten an analoges Device übergeben
firstData=firstData';
putdata(gDyn_ao,firstData);
%% Starte kontinuierliche, analoge Objekte
%Globale Variablen reseten
gDyn_databufferHeat=[];
gDyn_databufferTemp=[];
gDyn_timebuffer=[];
%Input- und Outputobjekt zusammenfassen
gDyn_analogObjects=[gDyn_ai gDyn_ao];
%I/O aktivieren
start(gDyn_analogObjects);
And the timerfunction:
% AnalogOUT-TimerCallback: getriggert neue Daten in den OutputPuffer schieben
function ao_enqueueMoreData(hObj,event,handles)
global gDyn_sampleRate;
global gDyn_von;
global gDyn_bis;
global zaehler;
zaehler=zaehler+1
readyToOutput=hObj.SamplesAvailable
%MaxQueueableData=hObj.MaxSamplesQueued
AusgegebenenSamples=hObj.SamplesOutput
%if (hObj.SamplesAvailable+lenth(nextData))>=hObj.MaxSamplesQueued
%if (hObj.SamplesAvailable+gDyn_sampleRate)>=hObj.MaxSamplesQueued
if hObj.SamplesAvailable>=gDyn_sampleRate*4
return
end
%generiere neue Outputdaten
for k=1:gDyn_sampleRate
nextData(k)=gDyn_bis; %Heizer
end
%Schiebe neue Daten in Puffer
nextData=nextData';
putdata(hObj,nextData);
Can you find any mistakes ?

Sign in to comment.


Chirag Gupta
Chirag Gupta on 14 Dec 2011
Looking at the documentation, it states that all the data must be queued using putdata before starting the analogoutput object.
So the TimerFcn will not work, unless you do the following: a) Change the TriggerType to Manual, b) and retrigger after putting more data.
A more convenient solution would be offered by Session based architecture which is perfect for this:
I am assuming you are doing both input and output simultaneoulsy! You can use Background operations to continuously queue data to to be output (using a DataRequired callback), example: http://www.mathworks.com/help/toolbox/daq/bsob84e-1.html#bsovlz7-1
You can also do both Input and Output simultaneously and do a live plot using 'DataAvailable' for inputs! http://www.mathworks.com/help/toolbox/daq/bsotkz_-1.html (You might want to use startBackground(), if you want the output data to happen in the background)
  7 Comments
Chirag Gupta
Chirag Gupta on 16 Dec 2011
I am a little surprised at that! src and event are always inputs.
@(src,evn) Functioname (src,evnt, additionalargs) is one of the many ways to define a callback!

Sign in to comment.

Categories

Find more on Manage Products 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!