While loop stuck in callback function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Maheen Siddiqui
am 1 Apr. 2016
Kommentiert: Image Analyst
am 5 Apr. 2016
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 Kommentare
Akzeptierte Antwort
Image Analyst
am 1 Apr. 2016
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 Kommentare
Image Analyst
am 5 Apr. 2016
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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!