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() {
75
75
_thing.updateTimestampOnLocallyChangedProperties ();
76
76
77
77
if (checkPhyConnection () != NetworkConnectionState::CONNECTED) return ;
78
- if (connectionCheck () != ArduinoIoTConnectionStatus::CONNECTED) return ;
78
+ if (checkCloudConnection () != ArduinoIoTConnectionStatus::CONNECTED) return ;
79
79
80
80
if (_connection->available ()) {
81
81
uint8_t msgBuf[CBOR_LORA_MSG_MAX_SIZE];
@@ -136,7 +136,7 @@ NetworkConnectionState ArduinoIoTCloudLPWAN::checkPhyConnection()
136
136
return connect_state;
137
137
}
138
138
139
- ArduinoIoTConnectionStatus ArduinoIoTCloudLPWAN::connectionCheck ()
139
+ ArduinoIoTConnectionStatus ArduinoIoTCloudLPWAN::checkCloudConnection ()
140
140
{
141
141
switch (_iotStatus) {
142
142
case ArduinoIoTConnectionStatus::IDLE: {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ArduinoIoTCloudLPWAN : public ArduinoIoTCloudClass {
60
60
void sendPropertiesToCloud ();
61
61
int writeProperties (const byte data[], int length);
62
62
NetworkConnectionState checkPhyConnection ();
63
- ArduinoIoTConnectionStatus connectionCheck ();
63
+ ArduinoIoTConnectionStatus checkCloudConnection ();
64
64
};
65
65
66
66
/* *****************************************************************************
You can’t perform that action at this time.
0 commit comments