Break doesn't break out of endless loop
Show older comments
Hey guys!
I am designing an app, where one function is to read out some strings, which are sent from an Arduino.
So basically, the Arduino will send something like
D0.00
D0.05
D0.1
D0.15
DS
over serial. DS is the "stopper" string, so if DS is sent, the app shall stop reading over Serial.
Now, whats frustrating me, is following: My code to read out these strings is
while 1
pause(0.001);
%read out data from serial
received_stringM = fgets(app.s);
%DS is the stopper string, so if it is sent, the while loop should end
if received_stringM == "DS"
break
end
%to display the sent string in an Edit Field
app.currentdistanceEditField_2.Value = received_stringM;
end
This is the Edit Field, where the string is displayed to.

But exactly this is wondering me. The code is very simple, but I thought after the break command, the following lines shouldn't be executed. But obviously, even though DS is sent, it doesn't break, but is displayed.
Does anyone see any mistake in my code?
Thanks for reading and for any advices!
3 Comments
Put a breakpoint in and debug it to see what received_stringM actually is when you think it should hit the break instruction. Generally I still use strcmp, even with strings, but as far as I am aware == should work perfectly when on a string object, unlike a char, so this should not be a problem.
You may just need to convert the output of fgets to a string:
received_stringM = string( fgets(app.s) )
I don't know if it returns a string or a char and if that is the source of the problem.
Hieu Philip Hoang
on 14 Feb 2019
Walter Roberson
on 14 Feb 2019
for debugging double(received_stringM)
I think you will find that it ends in 13 (carriage return) or 10 (newline) or both.
Answers (1)
Walter Roberson
on 14 Feb 2019
0 votes
fgets includes the terminator character . use fgetl instead of fgets
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!