stm32_freertos_template/eeprom.h

15 lines
359 B
C

#ifndef __EEPROM_H
#define __EEPROM_H
#include <stdint.h>
//--------------definicje-----------------//
#define EEPROM_ADDR 0x50
//-----------------typy-------------------
//---------------funkcje------------------
int8_t eeprom_Initialize(void);
int8_t eeprom_ReadData(void *data, uint32_t size);
int8_t eeprom_WriteData(void *data, uint32_t size);
#endif