16 lines
362 B
C
16 lines
362 B
C
|
#include "common/theNVS.h"
|
||
|
|
||
|
static const char *TAG = "NVS";
|
||
|
|
||
|
void setup_nvs(void)
|
||
|
{
|
||
|
esp_err_t ret = nvs_flash_init();
|
||
|
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND)
|
||
|
{
|
||
|
ESP_ERROR_CHECK(nvs_flash_erase());
|
||
|
ret = nvs_flash_init();
|
||
|
}
|
||
|
ESP_ERROR_CHECK(ret);
|
||
|
ESP_LOGI(TAG, "Initialization done");
|
||
|
}
|