Skip to content

Commit 7df59d7

Browse files
committed
change set timeout at 30 seconds for cellular based connectivities
1 parent e5b44d2 commit 7df59d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Arduino_NetworkConfigurator.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,25 +411,25 @@ void NetworkConfiguratorClass::setConnectionTimeoutTimer() {
411411

412412
#if defined(BOARD_HAS_NB)
413413
case NetworkAdapter::NB:
414-
timeout = 25000; // 25 seconds
414+
timeout = 30000; // 30 seconds
415415
break;
416416
#endif
417417

418418
#if defined(BOARD_HAS_GSM)
419419
case NetworkAdapter::GSM:
420-
timeout = 25000; // 25 seconds
420+
timeout = 30000; // 30 seconds
421421
break;
422422
#endif
423423

424424
#if defined(BOARD_HAS_CATM1_NBIOT)
425425
case NetworkAdapter::CATM1:
426-
timeout = 25000; // 25 seconds
426+
timeout = 30000; // 30 seconds
427427
break;
428428
#endif
429429

430430
#if defined(BOARD_HAS_CELLULAR)
431431
case NetworkAdapter::CELL:
432-
timeout = 25000; // 25 seconds
432+
timeout = 30000; // 30 seconds
433433
break;
434434
#endif
435435

0 commit comments

Comments
 (0)