Change to mode STATIONAP_MODE at startup only if STA_SSID and STA_PASS are defined.

pull/150/head
mroavi 9 years ago
parent 8b7625129a
commit a98f86f72b
  1. 4
      esp-link/cgiwifi.c

@ -836,7 +836,7 @@ void ICACHE_FLASH_ATTR wifiInit() {
// If STA is enabled switch to STA+AP to allow for recovery, it will then switch to STA-only
// once it gets an IP address
wifi_set_opmode(3);
if (x == 1) wifi_set_opmode(3);
// Call both STATION and SOFTAP default config
wifi_station_get_config_default(&stconf);
@ -851,6 +851,8 @@ void ICACHE_FLASH_ATTR wifiInit() {
os_strncpy((char*)stconf.ssid, VERS_STR(STA_SSID), 32);
os_strncpy((char*)stconf.password, VERS_STR(STA_PASS), 64);
wifi_set_opmode(3);
DBG("Wifi pre-config trying to connect to AP %s pw %s\n",(char*)stconf.ssid, (char*)stconf.password);
// wifi_set_phy_mode(2); // limit to 802.11b/g 'cause n is flaky

Loading…
Cancel
Save