Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-pico
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-pico
Commits
58089b1f
Unverified
Commit
58089b1f
authored
Nov 30, 2023
by
Juraj Andrássy
Committed by
GitHub
Nov 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wl_defintions.h wl_enc_type update (#1859)
parent
4f62e0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
cores/rp2040/wl_definitions.h
cores/rp2040/wl_definitions.h
+5
-1
No files found.
cores/rp2040/wl_definitions.h
View file @
58089b1f
...
...
@@ -66,10 +66,14 @@ typedef enum {
}
wl_status_t
;
/* Encryption modes */
enum
wl_enc_type
{
/* Values map to 802.11
encryption suites...
*/
enum
wl_enc_type
{
/* Values map to 802.11
Cipher Algorithm Identifier
*/
ENC_TYPE_WEP
=
5
,
ENC_TYPE_TKIP
=
2
,
ENC_TYPE_WPA
=
ENC_TYPE_TKIP
,
ENC_TYPE_CCMP
=
4
,
ENC_TYPE_WPA2
=
ENC_TYPE_CCMP
,
ENC_TYPE_GCMP
=
6
,
ENC_TYPE_WPA3
=
ENC_TYPE_GCMP
,
/* ... except these two, 7 and 8 are reserved in 802.11-2007 */
ENC_TYPE_NONE
=
7
,
ENC_TYPE_AUTO
=
8
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment