File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ void ArduinoIoTCloudLPWAN::update() {
7575 _thing.updateTimestampOnLocallyChangedProperties ();
7676
7777 if (checkPhyConnection () != NetworkConnectionState::CONNECTED) return ;
78- if (connectionCheck () != ArduinoIoTConnectionStatus::CONNECTED) return ;
78+ if (checkCloudConnection () != ArduinoIoTConnectionStatus::CONNECTED) return ;
7979
8080 if (_connection->available ()) {
8181 uint8_t msgBuf[CBOR_LORA_MSG_MAX_SIZE];
@@ -136,7 +136,7 @@ NetworkConnectionState ArduinoIoTCloudLPWAN::checkPhyConnection()
136136 return connect_state;
137137}
138138
139- ArduinoIoTConnectionStatus ArduinoIoTCloudLPWAN::connectionCheck ()
139+ ArduinoIoTConnectionStatus ArduinoIoTCloudLPWAN::checkCloudConnection ()
140140{
141141 switch (_iotStatus) {
142142 case ArduinoIoTConnectionStatus::IDLE: {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ArduinoIoTCloudLPWAN : public ArduinoIoTCloudClass {
6060 void sendPropertiesToCloud ();
6161 int writeProperties (const byte data[], int length);
6262 NetworkConnectionState checkPhyConnection ();
63- ArduinoIoTConnectionStatus connectionCheck ();
63+ ArduinoIoTConnectionStatus checkCloudConnection ();
6464};
6565
6666/* *****************************************************************************
You can’t perform that action at this time.
0 commit comments