30#include "ove_config.h"
111static inline int ove_nvs_read(
const char *key,
void *buf,
size_t buf_len,
size_t *out_len) { (void)key; (void)buf; (void)buf_len; (void)out_len;
return OVE_ERR_NOT_SUPPORTED; }
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_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_erase(const char *key)
Delete a key-value pair from non-volatile storage.
void ove_nvs_deinit(void)
Deinitialise the non-volatile storage subsystem.
int ove_nvs_init(void)
Initialise the non-volatile storage subsystem.
#define OVE_ERR_NOT_SUPPORTED
The requested feature is not supported by the active backend.
Definition types.h:38