OPLI progress... still figuring out correct readings

This commit is contained in:
James Alan Nguyen 2022-04-24 02:37:25 +10:00
parent a049e43618
commit 6bd199923f
4 changed files with 114 additions and 19 deletions

View file

@ -139,7 +139,7 @@ double SafeReader::readD() {
}
String SafeReader::readString(size_t stlen) {
String ret(stlen, ' ');
String ret;
#ifdef READ_DEBUG
logD("SR: reading string len %d at %x",stlen,curSeek);
#endif