Stima V4 Slave RAIN  4.2
eeprom.cpp
Go to the documentation of this file.
1 
30 #include "drivers/eeprom.h"
31 
34 {
35 }
36 
41 EEprom::EEprom(TwoWire *wire, BinarySemaphore *wireLock, uint8_t i2c_address)
42 {
43  _wire = wire;
44  _wireLock = wireLock;
45  _i2c_address = i2c_address;
46 }
47 
52 bool EEprom::Write(uint16_t address, uint8_t value)
53 {
54  bool status = true;
55  if (_wireLock->Take(Ticks::MsToTicks(EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS)))
56  {
57  _wire->beginTransmission(_i2c_address);
58  if (_wire->endTransmission() == 0)
59  {
60  _wire->beginTransmission(_i2c_address);
61  _wire->write(address >> 8);
62  _wire->write(address & 0xFF);
63  _wire->write(value);
64  _wire->endTransmission();
65  // Look time for write min 1.4 mS (On Byte)
66  delay(WR_TIME_MS);
67  }
68  else
69  {
70  status = false;
71  }
72  _wireLock->Give();
73  }
74  else
75  {
76  status = false;
77  }
78  return status;
79 }
80 
86 bool EEprom::Write(uint16_t address, uint8_t *buffer, uint16_t length)
87 {
88  bool status = true; // status ok
89  bool eot = false; // end of transmission
90  uint16_t iByte = 0; // index byte to send
91  if (_wireLock->Take(Ticks::MsToTicks(EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS)))
92  {
93  while((eot == false)&&(status == true)) {
94  _wire->beginTransmission(_i2c_address);
95  if (_wire->endTransmission() == 0)
96  {
97  _wire->beginTransmission(_i2c_address);
98  _wire->write(address >> 8);
99  _wire->write(address & 0xFF);
100  while(iByte<length) {
101  _wire->write(buffer[iByte++]);
102  // Update address && perform page pass for next byte
103  if((++address % EEPAGESIZE) == 0) {
104  // Switch next page (End of page)
105  // Other Write rollUp to the init Byte of page
106  break;
107  }
108  }
109  _wire->endTransmission();
110  // Test other data to write or eot
111  eot = iByte >= length;
112  // Look time for write min 3.6 mS (On Page)
113  delay(WR_TIME_MS);
114  }
115  else
116  {
117  status = false;
118  }
119  }
120  _wireLock->Give();
121  }
122  else
123  {
124  status = false;
125  }
126  return status;
127 }
128 
133 bool EEprom::Read(uint16_t address, uint8_t *value)
134 {
135  bool status = true;
136  if (_wireLock->Take(Ticks::MsToTicks(EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS)))
137  {
138  _wire->beginTransmission(_i2c_address);
139  if (_wire->endTransmission() == 0)
140  {
141  _wire->beginTransmission(_i2c_address);
142  _wire->write(address >> 8);
143  _wire->write(address & 0xFF);
144  if (_wire->endTransmission() == 0)
145  _wire->requestFrom((uint8_t)_i2c_address, 1);
146  *value = _wire->read();
147  _wire->endTransmission();
148  }
149  else
150  {
151  status = false;
152  }
153  _wireLock->Give();
154  }
155  else
156  {
157  status = false;
158  }
159  return status;
160 }
161 
167 bool EEprom::Read(uint16_t address, uint8_t *buffer, uint16_t length)
168 {
169  bool status = true;
170  bool eor = false;
171  uint16_t iIdx = 0;
172  if (_wireLock->Take(Ticks::MsToTicks(EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS)))
173  {
174  // Loop to end of receive total byte
175  // Block read divise for PAGESIZE maxreceive bytes
176  while (eor==false)
177  {
178  _wire->beginTransmission(_i2c_address);
179  if (_wire->endTransmission() == 0)
180  {
181  _wire->beginTransmission(_i2c_address);
182  _wire->write(address >> 8);
183  _wire->write(address & 0xFF);
184  if (_wire->endTransmission() == 0)
185  {
186  uint8_t requestLen;
187  if(length > EEPAGESIZE) {
188  requestLen = EEPAGESIZE;
189  length -= EEPAGESIZE;
190  } else {
191  requestLen = length;
192  eor = true;
193  }
194  _wire->requestFrom((uint8_t)_i2c_address, requestLen);
195  for (uint16_t i = 0; i < requestLen; i++)
196  {
197  address++;
198  buffer[iIdx++] = _wire->read();
199  }
200  _wire->endTransmission();
201  }
202  else
203  {
204  status = false;
205  }
206  }
207  else
208  {
209  status = false;
210  }
211  }
212  _wireLock->Give();
213  }
214  else
215  {
216  status = false;
217  }
218  return status;
219 }
bool Read(uint16_t address, uint8_t *buffer, uint16_t length)
Read a number of data byte from EEPROM.
Definition: eeprom.cpp:167
BinarySemaphore * _wireLock
Definition: eeprom.h:62
bool Write(uint16_t address, uint8_t *buffer, uint16_t length)
Write a number of data byte into EEPROM.
Definition: eeprom.cpp:86
TwoWire * _wire
Definition: eeprom.h:61
EEprom()
Constructor Class.
Definition: eeprom.cpp:33
uint8_t _i2c_address
Definition: eeprom.h:63
#define WR_TIME_MS
Definition: eeprom.h:46
#define EEPAGESIZE
Definition: eeprom.h:44
#define EEPROM_SEMAPHORE_MAX_WAITING_TIME_MS
Definition: eeprom.h:47