2021-10-14 09:30:43 +01:00
|
|
|
#pragma once
|
2021-10-31 19:59:10 +00:00
|
|
|
#include <m-string.h>
|
|
|
|
#include <esp_err.h>
|
2021-10-14 09:30:43 +01:00
|
|
|
|
2021-10-31 19:59:10 +00:00
|
|
|
void nvs_init(void);
|
|
|
|
esp_err_t nvs_save_string(const char* key, const mstring_t* value);
|
|
|
|
esp_err_t nvs_load_string(const char* key, mstring_t* value);
|