1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Fix WiFiSleepType_t values to match SDK ones

This commit is contained in:
luc 2016-05-05 19:38:32 +02:00
parent 234a8743c9
commit f95f0ed321

View File

@ -40,7 +40,7 @@ typedef enum {
} WiFiPhyMode_t; } WiFiPhyMode_t;
typedef enum { 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; } WiFiSleepType_t;