Reformat leftovers

This commit is contained in:
Imbus 2025-12-28 07:11:16 +01:00
parent 65bf4e4182
commit 7a837c09a1
4 changed files with 9 additions and 9 deletions

View file

@ -49,9 +49,9 @@
unsigned char eeprom_get_char(unsigned int addr) {
do {
} while (EECR & (1 << EEPE)); // Wait for completion of previous write.
EEAR = addr; // Set EEPROM address register.
EECR = (1 << EERE); // Start EEPROM read operation.
return EEDR; // Return the byte read from EEPROM.
EEAR = addr; // Set EEPROM address register.
EECR = (1 << EERE); // Start EEPROM read operation.
return EEDR; // Return the byte read from EEPROM.
}
/*! \brief Write byte to EEPROM.