|
oveRTOS C API
Embedded RTOS framework — build system, configuration, and portable C API
|


Go to the source code of this file.
Functions | |
| int | ove_nvs_init (void) |
| Initialise the non-volatile storage subsystem. | |
| void | ove_nvs_deinit (void) |
| Deinitialise the non-volatile storage subsystem. | |
| int | ove_nvs_read (const char *key, void *buf, size_t buf_len, size_t *out_len) |
| Read a value from non-volatile storage by key. | |
| int | ove_nvs_write (const char *key, const void *data, size_t len) |
| Write or update a value in non-volatile storage. | |
| int | ove_nvs_erase (const char *key) |
| Delete a key-value pair from non-volatile storage. | |