tetris/game-ctrl/eeprom.h

21 lines
399 B
C
Raw Normal View History

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