File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -135,8 +135,6 @@ class ArduinoIoTCloudClass
135
135
136
136
ArduinoCloudThing Thing;
137
137
138
- int _lastSyncRequestTickTime = 0 ;
139
-
140
138
OnCloudEventCallback _on_sync_event_callback = NULL ;
141
139
OnCloudEventCallback _on_connect_event_callback = NULL ;
142
140
OnCloudEventCallback _on_disconnect_event_callback = NULL ;
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ static unsigned long getTime() {
57
57
58
58
ArduinoIoTCloudTCP::ArduinoIoTCloudTCP ():
59
59
_connection(NULL ),
60
+ _lastSyncRequestTickTime{0 },
60
61
_mqtt_data_buf{0 },
61
62
_mqtt_data_len{0 },
62
63
_mqtt_data_request_retransmit{false },
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ class ArduinoIoTCloudTCP: public ArduinoIoTCloudClass {
95
95
96
96
private:
97
97
ConnectionHandler * _connection;
98
+ int _lastSyncRequestTickTime;
98
99
String _brokerAddress;
99
100
uint16_t _brokerPort;
100
101
uint8_t _mqtt_data_buf[MQTT_TRANSMIT_BUFFER_SIZE];
You can’t perform that action at this time.
0 commit comments