Small bug in print of dump function of eepromTest example
mrjoso opened this issue · 1 comments
mrjoso commented
extEEPROM/examples/eepromTest/eepromTest.ino
Lines 148 to 152 in 4abc28d
The original code of dump function skips print of byte when the value is < 16
Should be changed to this:
if ( d[c] < 16 ) Serial.print(F("0"));
Serial.print(d[c], HEX);
Serial.print( c == 7 ? " " : " ");
tehbiga commented
Here to second this; data dump is incorrect in serial output without this fix.