I have run into this a coupe of times. Progress Bar and Icon remain active ---
Exception in thread "Thread-5" java.lang.StackOverflowError
at java.util.regex.Pattern$CharProperty.match(Pattern.java:3344)
at java.util.regex.Pattern$Branch.match(Pattern.java:4114)
at java.util.regex.Pattern$GroupHead.match(Pattern.java:4168)
at java.util.regex.Pattern$Loop.match(Pattern.java:4295)
at java.util.regex.Pattern$GroupTail.match(Pattern.java:4227)
at java.util.regex.Pattern$BranchConn.match(Pattern.java:4078)
It happens when I forget closing quotation marks in a print statement.
else if ((fractionf >= 0.7))
{ // we need to offset the current reading
Serial.println ("Case D: 3/4);
WriteTable(DegreeC,rawValueW-3,1);
WriteTable(DegreeC+1,rawValueW+1,1);
}
The offending line is: Serial.println ("Case D: 3/4); There are no other print quoted strings past this point so the compiler tries to read in the rest of the file as the string.