Reformat leftovers
This commit is contained in:
parent
65bf4e4182
commit
7a837c09a1
4 changed files with 9 additions and 9 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue