How can I read data from a buffer at certain intervals (ie. every 20 ms)?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Lokesh Ravindranathan
el 17 de Jul. de 2013
I would recommend following the approach showing the help page: http://www.mathworks.com/help/matlab/matlab_external/timerperiod.html
2 comentarios
Lokesh Ravindranathan
el 23 de Jul. de 2013
Is there a particular reason why you would want to combine asyncmode and timer? Or do you want timeout when you receive no data?
Ver también
Categorías
Más información sobre Low-Level File I/O 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!