34 #include <STM32FreeRTOS.h>
37 #include "semaphore.hpp"
40 using namespace cpp_freertos;
42 #define EEPROM_AT24C64_DEFAULT_ADDRESS (0x50)
43 #define EEPROMSIZE 8192
45 #define PAGEMASK (EEPROMSIZE-EEPAGESIZE)
47 #define EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS (1000)
54 bool Write(uint16_t address, uint8_t *buffer, uint16_t length);
55 bool Write(uint16_t address, uint8_t value);
56 bool Read(uint16_t address, uint8_t *buffer, uint16_t length);
57 bool Read(uint16_t address, uint8_t *value);
BinarySemaphore * _wireLock
#define EEPROM_AT24C64_DEFAULT_ADDRESS