We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d2034b commit 0fc4a54Copy full SHA for 0fc4a54
src/AIoTC_Config.h
@@ -127,6 +127,7 @@
127
* CONSTANTS
128
******************************************************************************/
129
130
+#define AIOT_CONFIG_INTERVAL_RETRY_DELAY_ms (10000UL)
131
#define AIOT_CONFIG_RECONNECTION_RETRY_DELAY_ms (1000UL)
132
#define AIOT_CONFIG_MAX_RECONNECTION_RETRY_DELAY_ms (32000UL)
133
#define AIOT_CONFIG_DEVICE_TOPIC_SUBSCRIBE_RETRY_DELAY_ms (5*1000UL)
src/ArduinoIoTCloudLPWAN.cpp
@@ -50,7 +50,7 @@ ArduinoIoTCloudLPWAN::ArduinoIoTCloudLPWAN()
50
: _state{State::ConnectPhy}
51
, _retryEnable{false}
52
, _maxNumRetry{5}
53
-, _intervalRetry{10000}
+, _intervalRetry{AIOT_CONFIG_INTERVAL_RETRY_DELAY_ms}
54
{
55
56
}
0 commit comments