ttt2/my_src/eeprom.h
Wolfgang Hottgenroth 6a7b54dcc1 add eeprom stuff
2017-06-07 20:09:53 +02:00

19 lines
280 B
C

/*
* eeprom.h
*
* Created on: Jun 7, 2017
* Author: wn
*/
#ifndef EEPROM_H_
#define EEPROM_H_
#include "stm32f1xx_hal.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_ */