You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when checking the last token in the line, there should be the "\n" delimiter as the token now ends with the LF character. The CR character was already removed by Fgets function.
This example works as the Strtod function stops when encounters a non-number character. But if someone modifies it and a string have to be read here, then this string will end with the LF character. It can cause problems afterwards.
Thank you for your work.
The text was updated successfully, but these errors were encountered:
I will put it on the todo for SdFat beta and it will eventually get to release. I don't do minor fixes to the release version since Arduino forces all users to update.
Hello,
when checking the last token in the line, there should be the "\n" delimiter as the token now ends with the LF character. The CR character was already removed by Fgets function.
SdFat/examples/ReadCsvFile/ReadCsvFile.ino
Line 93 in 052d38e
This example works as the Strtod function stops when encounters a non-number character. But if someone modifies it and a string have to be read here, then this string will end with the LF character. It can cause problems afterwards.
Thank you for your work.
The text was updated successfully, but these errors were encountered: