File tree 1 file changed +16
-10
lines changed
libraries/WiFi/src/utility
1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change 46
46
47
47
typedef enum {
48
48
WL_NO_SHIELD = 255 ,
49
- WL_IDLE_STATUS = 0 ,
50
- WL_NO_SSID_AVAIL ,
51
- WL_SCAN_COMPLETED ,
52
- WL_CONNECTED ,
53
- WL_CONNECT_FAILED ,
54
- WL_CONNECTION_LOST ,
55
- WL_DISCONNECTED ,
56
- WL_AP_LISTENING ,
57
- WL_AP_CONNECTED ,
58
- WL_AP_FAILED
49
+ WL_NO_MODULE = 255 ,
50
+ WL_IDLE_STATUS = 0 ,
51
+ WL_NO_SSID_AVAIL ,
52
+ WL_SCAN_COMPLETED ,
53
+ WL_CONNECTED ,
54
+ WL_CONNECT_FAILED ,
55
+ WL_CONNECTION_LOST ,
56
+ WL_DISCONNECTED ,
57
+ WL_AP_LISTENING ,
58
+ WL_AP_CONNECTED ,
59
+ WL_AP_FAILED
59
60
} wl_status_t ;
60
61
61
62
/* Encryption modes */
@@ -65,8 +66,13 @@ enum wl_enc_type { /* Values map to 802.11 encryption suites... */
65
66
ENC_TYPE_CCMP = 4 ,
66
67
/* ... except these two, 7 and 8 are reserved in 802.11-2007 */
67
68
ENC_TYPE_NONE = 7 ,
69
+ ENC_TYPE_UNKNOWN = 9 ,
68
70
ENC_TYPE_AUTO = 8
69
71
};
70
72
73
+ #if defined(ARDUINO_PORTENTA_H7_M7 ) || defined(ARDUINO_PORTENTA_H7_M4 )
74
+ #include "whd_version.h"
75
+ #define WIFI_FIRMWARE_LATEST_VERSION WHD_VERSION
76
+ #endif
71
77
72
78
#endif /* WL_DEFINITIONS_H_ */
You can’t perform that action at this time.
0 commit comments