1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-07 16:23:38 +03:00
This commit is contained in:
Markus Sattler 2016-01-11 15:45:54 +01:00
parent fe558540f6
commit b425eff683

View File

@ -119,7 +119,7 @@ wl_status_t ESP8266WiFiMulti::run(void) {
delay(10); delay(10);
status = WiFi.status(); status = WiFi.status();
} }
#ifdef DEBUG_ESP_WIFI
IPAddress ip; IPAddress ip;
uint8_t * mac; uint8_t * mac;
switch(status) { switch(status) {
@ -142,6 +142,7 @@ wl_status_t ESP8266WiFiMulti::run(void) {
DEBUG_WIFI_MULTI("[WIFI] Connecting Failed (%d).\n", status); DEBUG_WIFI_MULTI("[WIFI] Connecting Failed (%d).\n", status);
break; break;
} }
#endif
} else { } else {
DEBUG_WIFI_MULTI("[WIFI] no matching wifi found!\n"); DEBUG_WIFI_MULTI("[WIFI] no matching wifi found!\n");
} }