Revert types

This commit is contained in:
Mark Qvist 2022-01-14 10:55:48 +01:00
parent 4237760680
commit dccee13022
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ void eeprom_update(int mapped_addr, uint8_t byte) {
} }
void eeprom_write(int addr, uint8_t byte) { void eeprom_write(uint8_t addr, uint8_t byte) {
if (!eeprom_info_locked() && (addr >= 0) && (addr < EEPROM_RESERVED)) { if (!eeprom_info_locked() && (addr >= 0) && (addr < EEPROM_RESERVED)) {
eeprom_update(eeprom_addr(addr), byte); eeprom_update(eeprom_addr(addr), byte);
} else { } else {