How can I read data from a buffer at certain intervals (ie. every 20 ms)?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I am trying to read data from a buffer every 20 ms. I would like the data to continue to fill up the buffer while I fread it at 20 ms intervals. I used the asynchrnous command for this. However, I am not getting the correct time for data being read from the buffer. I used timerPeriod equal to .02 and had a callback function to an fread. However, the data is not being read at 20ms. (I used tic toc to try to measure times) My reason for doing all this is to plot visually data that is being logged such that the plot updates itself every 20ms.
Attached is my code.
function [x,meas,Bytes,lengthRead]=myfunc()
DATA_LOG_TIME_SEC = 1; s = serial(COM_PORT); s.InputBufferSize = 1000000; s.BaudRate = BAUD_RATE; s.StopBits = 2; s.Timeout = 1.0;
s.Timeout = DATA_LOG_TIME_SEC; s.ReadAsyncMode = 'continuous' ; s.TimerPeriod = .02 ; s.TimerFcn = {'servicetimer'};
tic fopen(s); toc fprintf('INFO: Begin logging data...\n')
fclose(s) ; delete(s) ; end
function y = servicetimer(obj, event)
global x;
global i;
global meas;
global Bytes;
global lengthRead;
global EmptyCount
global nonEmptyCount
while(i<=10)
Bytes(i)= obj.BytesAvailable;
tic;
meas{i}= fread(obj);
x(i)=toc;
lengthRead(i) = length(meas);
i=i+1;
end
end
댓글 수: 0
답변 (1개)
Lokesh Ravindranathan
2013년 7월 17일
I would recommend following the approach showing the help page: http://www.mathworks.com/help/matlab/matlab_external/timerperiod.html
댓글 수: 2
Lokesh Ravindranathan
2013년 7월 23일
Is there a particular reason why you would want to combine asyncmode and timer? Or do you want timeout when you receive no data?
참고 항목
카테고리
Help Center 및 File Exchange에서 Low-Level File I/O에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!