We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24d8607 commit 1602206Copy full SHA for 1602206
src/AIoTC_Config.h
@@ -137,6 +137,7 @@
137
* CONSTANTS
138
******************************************************************************/
139
140
+#define AIOT_CONFIG_INTERVAL_RETRY_DELAY_ms (10000UL)
141
#define AIOT_CONFIG_RECONNECTION_RETRY_DELAY_ms (1000UL)
142
#define AIOT_CONFIG_MAX_RECONNECTION_RETRY_DELAY_ms (32000UL)
143
#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