Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small bug in print of dump function of eepromTest example #13

Open
mrjoso opened this issue Nov 3, 2021 · 1 comment
Open

Small bug in print of dump function of eepromTest example #13

mrjoso opened this issue Nov 3, 2021 · 1 comment

Comments

@mrjoso
Copy link

mrjoso commented Nov 3, 2021

if ( d[c] < 16 ) {
Serial.print(F("0"));
Serial.print(d[c], HEX);
Serial.print( c == 7 ? " " : " ");
}

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
Copy link

tehbiga commented Feb 23, 2023

Here to second this; data dump is incorrect in serial output without this fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants