Functions | |
int | NutNvMemLoad (u_int addr, void *buff, size_t siz) |
Read data from non-volatile memory. | |
int | NutNvMemSave (u_int addr, CONST void *buff, size_t len) |
Save data in non-volatile memory. |
int NutNvMemLoad | ( | u_int | addr, | |
void * | buff, | |||
size_t | siz | |||
) |
Read data from non-volatile memory.
This routine provides platform independent access to non-volatile configuration data.
addr | Location to read from. | |
buff | Pointer to a buffer that receives the data. | |
siz | Number of bytes to read. |
int NutNvMemSave | ( | u_int | addr, | |
CONST void * | buff, | |||
size_t | len | |||
) |
Save data in non-volatile memory.
This routine provides platform independent access to non-volatile configuration data.
addr | Location to write to. | |
buff | Pointer to a buffer that contains the data. | |
len | Number of bytes to write. |