Fixes the Makefile's wifi station hardcoding functionality when starting in SOFTAP_MODE (#150)

* Bug fixed

* Change to mode STATIONAP_MODE at startup only if STA_SSID and STA_PASS are defined.
pull/138/head
mroavi 9 years ago committed by Thorsten von Eicken
parent a9321f421b
commit 107a24590c
  1. 2
      esp-link/cgiwifi.c

@ -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