19 lines
301 B
C
Raw Normal View History

2020-11-04 23:46:55 +01:00
/*
* eeprom.h
*
* Created on: Jun 7, 2017
* Author: wn
*/
#ifndef EEPROM_H_
#define EEPROM_H_
2020-11-05 13:05:19 +01:00
#include <stdint.h>
2020-11-04 23:46:55 +01:00
#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_ */