ad-astra/space_game/SpaceGame/src/hardware_access/eeprom/eeprom.h
schmelczerandras 26a0fd884f Copy project
2020-04-19 12:48:06 +02:00

15 lines
201 B
C

#ifndef EEPROM_H
#define EEPROM_H
#include <avr/io.h>
#define STORAGE_SIZE 52
typedef void (*OnEEPROMFinished)(uint8_t*);
inline void initializeEEPROM() {
EECR = 0; // atomic write
}
#endif