Skip to content

Commit 016b3b8

Browse files
committed
Use same check interval for ESP32 and ESP8266
1 parent 208ae9b commit 016b3b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Arduino_ConnectionHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ typedef void (*OnNetworkEventCallback)();
155155
static unsigned int const CHECK_INTERVAL_TABLE[] =
156156
{
157157
/* INIT */ 100,
158-
#if defined(ARDUINO_ARCH_ESP32)
158+
#if defined(ARDUINO_ARCH_ESP8266) || defined(ARDUINO_ARCH_ESP32)
159159
/* CONNECTING */ 2000,
160160
#else
161161
/* CONNECTING */ 500,

0 commit comments

Comments
 (0)