Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

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

@mrjoso

Description

@mrjoso

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 ? " " : " ");

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions