While loop stuck in callback function
조회 수: 1 (최근 30일)
이전 댓글 표시
I have written a callback function in Matlab. My laptop is communicating with another laptop that is sending it bytes every few seconds that are recorded in a text file. For e.g. the laptop sends "66" and my laptop writes to the file Event_Markers.txt "66" continuously until the other laptop sends something else. The code is below.
The problem that I am currently facing is that in my callback function (below) I use a while loop to continuously write the same "information" (e.g. "66") to the text file until the other laptop sends something else. But this while loop gets stuck. This part is of a larger script that is acquiring data from a spectrometer and adding it to my script and causes everything to become stuck and the rest of the script is not executed. I tried to use an if loop instead of while and it only writes "66" twice instead of writing it continuously. It is, however, writing to the text file as I want it to.
Does anybody know if I need to add some other line of code to stop it becoming stuck? I have tried to add in a break but that results in the same problem as when I have an if loop, it only records "66" twice instead of continuously.
Thanks!
appenderFile=fopen('Event_Markers.txt','a+t');
s=serial('COM3');
set(s,'BytesAvailable',{@myCallback,appenderFile});
set(s,'BytesAvailableFcnCount',1);
set(s,'BytesAvailableFcnMode','byte');
fopen(s);
function myCallback(s,~,appenderFile)
bytes=(s,'BytesAvailable')
if(bytes==1)
[data count msg] = fread(s,bytes);
end
fprintf(appenderFile,'%d \n',data);
bytes=(s,'BytesAvailable');
while bytes==0
fprintf(appenderFile,'%d \n',data);
bytes=get(s,'BytesAvailable');
%if bytes~=0
%break
%end
end
end
댓글 수: 0
채택된 답변
Image Analyst
2016년 4월 1일
Never use a while loop without a failsafe or else you get the problem you did. So you can put a loop counter on there
loopCounter = 1;
maxNumLoops = 1000; % Whatever you'd expect the max to ever get to.
while condition && loopCounter < maxNumLoops
% code
% Increment loop counter
maxNumLoops = maxNumLoops + 1;
end
Or else use tic and toc to bail out after so many seconds
maxSecondsToWait = 5; % Whatever
startTime = tic;
elapsedSeconds = 0;
while condition && elaspedSeconds < maxSecondsToWait
% code
% Update elapsed time.
elapsedSeconds = toc(startTime);
end
댓글 수: 6
Image Analyst
2016년 4월 5일
You could use SSDs instead of HDs.
Or, if you have your data originate from the same session of the same program, then sure, keep it as an array in memory and do not write to a temporary file on the drive. It will be faster.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!