Skip to content

Commit 0fc4a54

Browse files
committed
chore: Address PR feedback
1 parent 1d2034b commit 0fc4a54

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
@@ -127,6 +127,7 @@
127127
* CONSTANTS
128128
******************************************************************************/
129129

130+
#define AIOT_CONFIG_INTERVAL_RETRY_DELAY_ms (10000UL)
130131
#define AIOT_CONFIG_RECONNECTION_RETRY_DELAY_ms (1000UL)
131132
#define AIOT_CONFIG_MAX_RECONNECTION_RETRY_DELAY_ms (32000UL)
132133
#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)