We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2472183 + 9e12f60 commit 5cca5c1Copy full SHA for 5cca5c1
src/Arduino_GSMConnectionHandler.cpp
@@ -28,6 +28,7 @@
28
******************************************************************************/
29
30
static int const GSM_TIMEOUT = 30000;
31
+static int const GPRS_TIMEOUT = 30000;
32
33
/******************************************************************************
34
FUNCTION DEFINITION
@@ -82,6 +83,7 @@ NetworkConnectionState GSMConnectionHandler::update_handleInit()
82
83
84
Debug.print(DBG_INFO, F("SIM card ok"));
85
_gsm.setTimeout(GSM_TIMEOUT);
86
+ _gprs.setTimeout(GPRS_TIMEOUT);
87
88
mkr_gsm_feed_watchdog();
89
0 commit comments