mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-08-24 14:15:40 -04:00
Revert types
This commit is contained in:
parent
4237760680
commit
dccee13022
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue