Why DurationInSeconds doesn't work?

조회 수: 5 (최근 30일)
Jingyuan Dong
Jingyuan Dong 2014년 4월 10일
편집: per isakson 2014년 7월 14일
Hello,
We are trying to use PCI6602 Daqboard to generate a serial of pulses to control servo. Our program is pretty simple like this:
s=daq.createSession('ni');
s.addCounterOutputChannel('Dev1','ctr0','PulseGeneration');
ch1=s.Channels(1);
for i=1:24
ch1.DutyCycle=0.08+0.006*(i-1);
s.DurationInSeconds=0.204;
s.startForeground();
end
It worked before. But these days, it seems like 's.DurationInSeconds' doesn't work. The signal generated by Daqboard is attached below. The duration time of signal sequence is much longer than 204 ms, which it suppose to be.
Anyone knows why?
Thanks

채택된 답변

Sruthi Ayloo
Sruthi Ayloo 2014년 7월 10일
I believe that the difference between s.DurationInSeconds and the actual duration of signal generation is a bug. The difference appears to be a constant offset approx 0.1s for MATLAB 7.14 (R2012a) and the offset is relatively more significant when the DurationInSeconds is small. This bug exists in MATLAB 8.3 (R2014a) as well. As a temporary workaround, you can adjust the DurationInSeconds accordingly.
  댓글 수: 1
Jingyuan Dong
Jingyuan Dong 2014년 7월 14일
I got the same answer from MATLAB support group too. We also tried MATLAB R2013a as well, the offset is about 0.2s.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simultaneous and Synchronized Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by