oveRTOS C API
Embedded RTOS framework — build system, configuration, and portable C API
Loading...
Searching...
No Matches
Functions
nvs.h File Reference
#include "ove/types.h"
#include "ove_config.h"
Include dependency graph for nvs.h:
This graph shows which files directly or indirectly include this file:

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.