Borrar filtros
Borrar filtros

How to continue the queueOutputData() after execute stop()

2 visualizaciones (últimos 30 días)
Bohan Wu
Bohan Wu el 9 de Ag. de 2019
Respondida: Samatha Aleti el 13 de Ag. de 2019
Hi,
Currently I have code below
s = daq.createSession('ni');
addAnalogOutputChannel(s,'cDAQ1Mod2',0,'Voltage');
s.IsContinuous = true;
s.Rate = 10000;
data = linspace(-1,1,5000)';
lh = addlistener(s,'DataRequired', ...
@(src,event) src.queueOutputData(data));
queueOutputData(s,data)
startBackground(s);
stop(s)
After executing stop(s), daq will stop generate new data. I just wanna to know if there is any way I can continue queueOutputData without create a new session?
Thanks sooo much!
My goal is to generate a triangular ramp signal that user could pause and continue whenever they want

Respuestas (1)

Samatha Aleti
Samatha Aleti el 13 de Ag. de 2019
You may refer to the solution provided to the similar question here

Categorías

Más información sobre Data Acquisition Toolbox Supported Hardware en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by