Go to the source code of this file.
Data Structures | |
struct | HAL_EepromParams_t |
eeprom access control structure More... | |
Functions | |
int | HAL_ReadEeprom (HAL_EepromParams_t *params) |
Reads a number of bytes defined by HAL_EepromParams_t from the EEPROM. | |
int | HAL_WriteEeprom (HAL_EepromParams_t *params, void(*writeDone)()) |
Writes a number of bytes defined by HAL_EepromParams_t to EEPROM. By writeDone parameter user can control if write operation will be asynchronous or synchronous. |
Definition in file eeprom.h.
int HAL_ReadEeprom | ( | HAL_EepromParams_t * | params | ) |
Reads a number of bytes defined by HAL_EepromParams_t from the EEPROM.
[in] | params | - address of HAL_EepromParams_t defined by user. |
int HAL_WriteEeprom | ( | HAL_EepromParams_t * | params, | |
void(*)() | writeDone | |||
) |
Writes a number of bytes defined by HAL_EepromParams_t to EEPROM. By writeDone parameter user can control if write operation will be asynchronous or synchronous.
[in] | params | - address of HAL_EepromParams_t defined by user. |
[in] | writeDone | - address of callback. if writeDone is 0 write operation will be synchronous. |