Skip to content

Commit 1602206

Browse files
committed
chore: Address PR feedback
1 parent 24d8607 commit 1602206

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/AIoTC_Config.h

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
* CONSTANTS
138138
******************************************************************************/
139139

140+
#define AIOT_CONFIG_INTERVAL_RETRY_DELAY_ms (10000UL)
140141
#define AIOT_CONFIG_RECONNECTION_RETRY_DELAY_ms (1000UL)
141142
#define AIOT_CONFIG_MAX_RECONNECTION_RETRY_DELAY_ms (32000UL)
142143
#define AIOT_CONFIG_DEVICE_TOPIC_SUBSCRIBE_RETRY_DELAY_ms (5*1000UL)

src/ArduinoIoTCloudLPWAN.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ArduinoIoTCloudLPWAN::ArduinoIoTCloudLPWAN()
5050
: _state{State::ConnectPhy}
5151
, _retryEnable{false}
5252
, _maxNumRetry{5}
53-
, _intervalRetry{10000}
53+
, _intervalRetry{AIOT_CONFIG_INTERVAL_RETRY_DELAY_ms}
5454
{
5555

5656
}

0 commit comments

Comments
 (0)