Stima V4 Slave RAIN  4.2
eeprom.h
Go to the documentation of this file.
1 
31 #ifndef _EEPROM_H
32 #define _EEPROM_H
33 
34 #include <STM32FreeRTOS.h>
35 #include "ticks.hpp"
36 #include "thread.hpp"
37 #include "semaphore.hpp"
38 #include "Wire.h"
39 
40 using namespace cpp_freertos;
41 
42 #define EEPROM_AT24C64_DEFAULT_ADDRESS (0x50)
43 #define EEPROMSIZE 8192
44 #define EEPAGESIZE 32
45 #define PAGEMASK (EEPROMSIZE-EEPAGESIZE)
46 #define WR_TIME_MS 5
47 #define EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS (1000)
48 
49 class EEprom {
50 
51 public:
52  EEprom();
53  EEprom(TwoWire *wire, BinarySemaphore *wireLock, uint8_t i2c_address = EEPROM_AT24C64_DEFAULT_ADDRESS);
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);
58 
59 protected:
60 private:
61  TwoWire *_wire;
62  BinarySemaphore *_wireLock;
63  uint8_t _i2c_address;
64 };
65 
66 #endif
Definition: eeprom.h:49
BinarySemaphore * _wireLock
Definition: eeprom.h:62
TwoWire * _wire
Definition: eeprom.h:61
uint8_t _i2c_address
Definition: eeprom.h:63
#define EEPROM_AT24C64_DEFAULT_ADDRESS
Definition: eeprom.h:42