2024-04-19 11:38:32 +02:00
|
|
|
#ifndef _EEPROM_H_
|
|
|
|
#define _EEPROM_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
void eepromInit();
|
|
|
|
uint16_t eepromReadHighScore();
|
2024-05-18 20:09:21 +02:00
|
|
|
void eepromSetHighScore(uint16_t v);
|
|
|
|
uint8_t eepromReadFlashColor();
|
|
|
|
void eepromSetFlashColor(uint8_t v);
|
|
|
|
void eepromCommit();
|
2024-04-19 11:38:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _EEPROM_H_
|