Merge branch 'bugfix/fix_compile_failed_when_CONFIG_ESP8266_WIFI_CONNECT_OPEN_ROUTER_WHEN_PWD_IS_SET_is_unset' into 'master'

fix(esp8266): fix compile failed when CONFIG_ESP8266_WIFI_CONNECT_OPEN_ROUTER_WHEN_PWD_IS_SET is unset

See merge request sdk/ESP8266_RTOS_SDK!1263
This commit is contained in:
Dong Heng
2020-01-07 14:20:50 +08:00

View File

@ -20,7 +20,12 @@
#include "phy.h"
const size_t _g_esp_wifi_ppt_task_stk_size = CONFIG_WIFI_PPT_TASKSTACK_SIZE;
const bool _g_esp_wifi_connect_open_router_when_pwd_is_set = CONFIG_ESP8266_WIFI_CONNECT_OPEN_ROUTER_WHEN_PWD_IS_SET;
#if CONFIG_ESP8266_WIFI_CONNECT_OPEN_ROUTER_WHEN_PWD_IS_SET
const bool _g_esp_wifi_connect_open_router_when_pwd_is_set = true;
#else
const bool _g_esp_wifi_connect_open_router_when_pwd_is_set = false;
#endif
esp_err_t esp_wifi_init_internal(const wifi_init_config_t *config);