1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-06 05:21:22 +03:00

#754 fix _useClientMode & _useApMode in SDK auto connect mode

This commit is contained in:
Markus Sattler 2015-09-07 17:11:30 +02:00
parent e0b7e0443c
commit 6a9eaca8b2

View File

@ -43,10 +43,11 @@ extern "C" void esp_yield();
ESP8266WiFiClass::ESP8266WiFiClass()
: _smartConfigStarted(false)
, _smartConfigDone(false)
, _useApMode(false)
, _useClientMode(false)
, _useStaticIp(false)
{
uint8 m = wifi_get_opmode();
_useClientMode = (m & WIFI_STA);
_useApMode = (m & WIFI_AP_STA);
wifi_set_event_handler_cb((wifi_event_handler_cb_t)&ESP8266WiFiClass::_eventCallback);
}