1
0
Fork 0

Update functions used to write to EEPROM

This commit is contained in:
Eric Tang 2016-04-21 19:35:18 -07:00
parent 9828aba2a1
commit 620ac4b260
14 changed files with 52 additions and 52 deletions

View file

@ -219,7 +219,7 @@ static void store_link(uint8_t *eeaddr)
xprintf("%s(%d)\r\n", s, strlen(s));
if (strlen(s) == 12) {
for (int i = 0; i < 12; i++) {
eeprom_write_byte(eeaddr+i, *(s+i));
eeprom_update_byte(eeaddr+i, *(s+i));
dprintf("%c ", *(s+i));
}
dprint("\r\n");