19 lines
301 B
C
19 lines
301 B
C
/*
|
|
* eeprom.h
|
|
*
|
|
* Created on: Jun 7, 2017
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef EEPROM_H_
|
|
#define EEPROM_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define STORAGE_ADDRESS 0x20
|
|
|
|
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_ */
|