diff --git a/tests/periph_eeprom/main.c b/tests/periph_eeprom/main.c index a9af1709dfbd76fe5045ac5f3cc1dd04d12b6bf9..2b973f0ff7128ccaa1739f3dbc9702ffbaf9f5b6 100644 --- a/tests/periph_eeprom/main.c +++ b/tests/periph_eeprom/main.c @@ -246,7 +246,10 @@ static int cmd_test(int argc, char **argv) assert(eeprom_read_byte(EEPROM_SIZE / 2) == 'A'); /* clear some bytes */ - const uint8_t cleared[4] = {0, 0, 0, 0,}; + const uint8_t cleared[4] = { + EEPROM_CLEAR_BYTE, EEPROM_CLEAR_BYTE, + EEPROM_CLEAR_BYTE, EEPROM_CLEAR_BYTE, + }; eeprom_clear(0, 4); memset(result, 0, 4); ret = eeprom_read(0, (uint8_t *)result, 4);