File tree Expand file tree Collapse file tree 4 files changed +41
-0
lines changed
snippets/wifi-credentials Expand file tree Collapse file tree 4 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ if WIFI_NM_WPA_SUPPLICANT
25
25
26
26
config HEAP_MEM_POOL_ADD_SIZE_HOSTAP
27
27
def_int 66560 if WIFI_NM_HOSTAPD_AP
28
+ def_int 55000 if WIFI_NM_WPA_SUPPLICANT_CRYPTO_ENTERPRISE && WIFI_CREDENTIALS
28
29
def_int 48000 if WIFI_NM_WPA_SUPPLICANT_CRYPTO_ENTERPRISE
29
30
def_int 41808 if WIFI_NM_WPA_SUPPLICANT_AP
30
31
# 30K is mandatory, but might need more for long duration use cases
Original file line number Diff line number Diff line change
1
+ .. _snippet-wifi-credentials :
2
+
3
+ Wi-Fi Credentials Snippet (wifi-credential)
4
+ ###########################################
5
+
6
+ .. code-block :: console
7
+
8
+ west build -S wifi-credentials [...]
9
+
10
+ Can also be used along with the :ref: `snippet-wifi-enterprise ` snippet.
11
+
12
+ .. code-block :: console
13
+
14
+ west build -S "wifi-enterprise,wifi-credentials" [...]
15
+
16
+ Overview
17
+ ********
18
+
19
+ This snippet enables Wi-Fi credentials support.
20
+
21
+ Requirements
22
+ ************
23
+
24
+ Hardware support for:
25
+
26
+ - :kconfig:option: `CONFIG_WIFI `
27
+ - :kconfig:option: `CONFIG_WIFI_USE_NATIVE_NETWORKING `
28
+ - :kconfig:option: `CONFIG_WIFI_NM_WPA_SUPPLICANT `
29
+ - :kconfig:option: `CONFIG_WIFI_NM_WPA_SUPPLICANT_CRYPTO_ENTERPRISE `
Original file line number Diff line number Diff line change
1
+ name : wifi-credentials
2
+ append :
3
+ EXTRA_CONF_FILE : wifi-credentials.conf
Original file line number Diff line number Diff line change
1
+ # For use with Wi-Fi Credentials
2
+ CONFIG_WIFI_CREDENTIALS=y
3
+ CONFIG_FLASH=y
4
+ CONFIG_FLASH_PAGE_LAYOUT=y
5
+ CONFIG_FLASH_MAP=y
6
+ CONFIG_NVS=y
7
+ CONFIG_SETTINGS=y
8
+ CONFIG_SETTINGS_NVS=y
You can’t perform that action at this time.
0 commit comments