11 lines
202 B
C
11 lines
202 B
C
#ifndef EEPROM_H_
|
|
#define EEPROM_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
void eepromWrite(uint16_t addr, uint8_t *buf, uint8_t len);
|
|
void eepromRead(uint16_t addr, uint8_t *buf, uint8_t len);
|
|
|
|
#endif /* EEPROM_H_ */
|