-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.projbuild
66 lines (56 loc) · 2.03 KB
/
Kconfig.projbuild
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
56
57
58
59
60
61
62
63
64
65
66
menu "Wifi Access"
config ESP_WIFI_SSID
string "WiFi SSID"
default "ssid"
help
SSID (network name) for the example to connect to.
config ESP_WIFI_PASSWORD
string "WiFi Password"
default "password"
help
WiFi password (WPA or WPA2) for the example to use.
config ESP_WIFI_AP_SSID
string "WiFi AP SSID"
default "myssid"
help
SSID (network name) for the example to connect to.
config ESP_WIFI_AP_PASSWORD
string "WiFi AP Password"
default "mypassword"
help
WiFi password (WPA or WPA2) for the example to use.
config ESP_MAXIMUM_RETRY
int "Maximum retry"
default 5
help
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
config ESP_WIFI_AP_MAX_CONNECTIONS
int "Maximum AP connections"
default 4
help
Set the Maximum number of connection to the AP.
# choice ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD
# prompt "WiFi Scan auth mode threshold"
# default ESP_WIFI_AUTH_WPA2_PSK
# help
# The weakest authmode to accept in the scan mode.
# This value defaults to ESP_WIFI_AUTH_WPA2_PSK incase password is present and ESP_WIFI_AUTH_OPEN is used.
# Please select ESP_WIFI_AUTH_WEP/ESP_WIFI_AUTH_WPA_PSK incase AP is operating in WEP/WPA mode.
# config ESP_WIFI_AUTH_OPEN
# bool "OPEN"
# config ESP_WIFI_AUTH_WEP
# bool "WEP"
# config ESP_WIFI_AUTH_WPA_PSK
# bool "WPA PSK"
# config ESP_WIFI_AUTH_WPA2_PSK
# bool "WPA2 PSK"
# config ESP_WIFI_AUTH_WPA_WPA2_PSK
# bool "WPA/WPA2 PSK"
# config ESP_WIFI_AUTH_WPA3_PSK
# bool "WPA3 PSK"
# config ESP_WIFI_AUTH_WPA2_WPA3_PSK
# bool "WPA2/WPA3 PSK"
# config ESP_WIFI_AUTH_WAPI_PSK
# bool "WAPI PSK"
# endchoice
endmenu