#ifndef STUBS_NVS_FLASH_H #define STUBS_NVS_FLASH_H #include "esp_err.h" #define ESP_ERR_NVS_NO_FREE_PAGES 0x1101 #define ESP_ERR_NVS_NEW_VERSION_FOUND 0x1102 static inline esp_err_t nvs_flash_init(void) { return ESP_OK; } static inline esp_err_t nvs_flash_erase(void) { return ESP_OK; } #endif