Data Acquisition in GUI
조회 수: 5 (최근 30일)
이전 댓글 표시
Hi,
I wrote the below code into a seperate .m file and it works properly.
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);
But when I copy these code to a push button callback function in my GUI. It stops generate the signal.
Can anyone help me, soooo appriciated!
댓글 수: 0
답변 (1개)
Geoff Hayes
2019년 8월 13일
Bohan - see your other question https://www.mathworks.com/matlabcentral/answers/475625-daq-cannot-generate-signal-in-gui-callback-function for an explanation of this behaviour.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 National Instruments Frame Grabbers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!