9 lines
151 B
C
9 lines
151 B
C
#ifndef _EEPROM_RW_
|
|
#define _EEPROM_RW_
|
|
|
|
#include "stdint.h"
|
|
|
|
void eeprom_write(uint8_t addr, uint8_t data);
|
|
uint8_t eeprom_read(uint8_t addr);
|
|
|
|
#endif |