From 7c607e4d6313aff5c79764cc149b095acf1368a1 Mon Sep 17 00:00:00 2001 From: xiaxiaotian Date: Mon, 12 Sep 2016 11:38:13 +0800 Subject: [PATCH] Change the enum of wifi_storage_t to be the same as that in wifi lib. --- components/esp32/include/esp_wifi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/include/esp_wifi.h b/components/esp32/include/esp_wifi.h index 357788225..d21eb1b85 100755 --- a/components/esp32/include/esp_wifi.h +++ b/components/esp32/include/esp_wifi.h @@ -235,8 +235,8 @@ esp_err_t esp_wifi_get_station_list(struct station_info **station); esp_err_t esp_wifi_free_station_list(void); typedef enum { - WIFI_STORAGE_RAM, WIFI_STORAGE_FLASH, + WIFI_STORAGE_RAM, } wifi_storage_t; esp_err_t esp_wifi_set_storage(wifi_storage_t storage);