-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig
55 lines (44 loc) · 1.05 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# Copyright (c) 2022 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
source "Kconfig.zephyr"
menu "Nordic Sta sample"
config CONNECTION_IDLE_TIMEOUT
int "Time to be waited for a station to connect"
default 30
config STA_SAMPLE_SSID
string "SSID"
help
Specify the SSID to connect
choice STA_KEY_MGMT_SELECT
prompt "Security Option"
default STA_KEY_MGMT_WPA3
config STA_KEY_MGMT_NONE
bool "Open Security"
help
Enable for Open Security
config STA_KEY_MGMT_WPA2
bool "WPA2 Security"
help
Enable for WPA2 Security
config STA_KEY_MGMT_WPA2_256
bool "WPA2 SHA 256 Security"
help
Enable for WPA2-PSK-256 Security
config STA_KEY_MGMT_WPA3
bool "WPA3 Security"
help
Enable for WPA3 Security
endchoice
config STA_SAMPLE_PASSWORD
string "Passphrase (WPA2) or password (WPA3)"
help
Specify the Password to connect
config NRF700X_QSPI_ENCRYPTION_KEY
string "16 bytes QSPI encryption key, only for testing purposes"
depends on BOARD_NRF7002DK_NRF5340_CPUAPP
help
Specify the QSPI encryption key
endmenu