Stima V4 Slave RAIN
4.2
|
#include <eeprom.h>
Public Member Functions | |
EEprom () | |
Constructor Class. More... | |
EEprom (TwoWire *wire, BinarySemaphore *wireLock, uint8_t i2c_address=EEPROM_AT24C64_DEFAULT_ADDRESS) | |
Construct a new EEprom::EEprom object. More... | |
bool | Write (uint16_t address, uint8_t *buffer, uint16_t length) |
Write a number of data byte into EEPROM. More... | |
bool | Write (uint16_t address, uint8_t value) |
Write a number of data byte into EEPROM. More... | |
bool | Read (uint16_t address, uint8_t *buffer, uint16_t length) |
Read a number of data byte from EEPROM. More... | |
bool | Read (uint16_t address, uint8_t *value) |
Read a single byte from EEPROM. More... | |
Private Attributes | |
TwoWire * | _wire |
BinarySemaphore * | _wireLock |
uint8_t | _i2c_address |
EEprom::EEprom | ( | ) |
Constructor Class.
Definition at line 33 of file eeprom.cpp.
EEprom::EEprom | ( | TwoWire * | wire, |
BinarySemaphore * | wireLock, | ||
uint8_t | i2c_address = EEPROM_AT24C64_DEFAULT_ADDRESS |
||
) |
Construct a new EEprom::EEprom object.
wire | I2C class |
wireLock | I2C semaphore |
i2c_address | I2C address |
Definition at line 41 of file eeprom.cpp.
bool EEprom::Read | ( | uint16_t | address, |
uint8_t * | buffer, | ||
uint16_t | length | ||
) |
Read a number of data byte from EEPROM.
[in] | address | EEPROM data address |
[in] | buffer | destination data buffer location |
[in] | length | buffer length |
Definition at line 167 of file eeprom.cpp.
bool EEprom::Read | ( | uint16_t | address, |
uint8_t * | value | ||
) |
Read a single byte from EEPROM.
[in] | address | EEPROM data address |
[in] | value | destination data buffer location |
Definition at line 133 of file eeprom.cpp.
bool EEprom::Write | ( | uint16_t | address, |
uint8_t * | buffer, | ||
uint16_t | length | ||
) |
Write a number of data byte into EEPROM.
[in] | address | EEPROM data address |
[in] | buffer | source data buffer location |
[in] | length | buffer length |
Definition at line 86 of file eeprom.cpp.
bool EEprom::Write | ( | uint16_t | address, |
uint8_t | value | ||
) |
Write a number of data byte into EEPROM.
[in] | address | EEPROM data address |
[in] | value | data value to write |
Definition at line 52 of file eeprom.cpp.