1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-27 21:16:50 +03:00

Merge pull request #1998 from luc-github/master

Fix WiFiSleepType_t values to match SDK ones
This commit is contained in:
Ivan Grokhotkov 2016-05-05 21:59:30 -05:00
commit fecddba827

View File

@ -40,7 +40,7 @@ typedef enum {
} WiFiPhyMode_t;
typedef enum {
WIFI_NONE_SLEEP = 0, WIFI_LIGHT_SLEEP = 2, WIFI_MODEM_SLEEP = 3
WIFI_NONE_SLEEP = 0, WIFI_LIGHT_SLEEP =1, WIFI_MODEM_SLEEP = 2
} WiFiSleepType_t;