File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,6 @@ enum ArduinoIoTConnectionStatus {
31
31
IOT_STATUS_CLOUD_DISCONNECTED,
32
32
IOT_STATUS_CLOUD_RECONNECTING,
33
33
IOT_STATUS_CLOUD_ERROR,
34
- IOT_STATUS_NETWORK_IDLE,
35
- IOT_STATUS_NETWORK_CONNECTED,
36
- IOT_STATUS_NETWORK_CONNECTING,
37
- IOT_STATUS_NETWORK_DISCONNECTED,
38
- IOT_STATUS_NETWORK_ERROR,
39
34
IOT_STATUS_ERROR_GENERIC
40
35
};
41
36
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ class WiFiConnectionManager : public ConnectionManager {
15
15
void iotConnectionCheck ();
16
16
void changeConnectionState (NetworkConnectionState _newState);
17
17
18
- const int CHECK_INTERVAL_IDLE = 500 ;
19
- const int CHECK_INTERVAL_INIT = 500 ;
18
+ const int CHECK_INTERVAL_IDLE = 100 ;
19
+ const int CHECK_INTERVAL_INIT = 100 ;
20
20
const int CHECK_INTERVAL_CONNECTING = 500 ;
21
21
const int CHECK_INTERVAL_GETTIME = 100 ;
22
22
const int CHECK_INTERVAL_CONNECTED = 10000 ;
23
23
const int CHECK_INTERVAL_RETRYING = 5000 ;
24
24
const int CHECK_INTERVAL_DISCONNECTED = 1000 ;
25
- const int CHECK_INTERVAL_ERROR = 1000 ;
25
+ const int CHECK_INTERVAL_ERROR = 500 ;
26
26
27
27
const char *ssid, *pass;
28
28
unsigned long lastConnectionTickTime, lastNetworkStep;
You can’t perform that action at this time.
0 commit comments