-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.projbuild
42 lines (36 loc) · 1.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
menu "RMT WS Tools Configuration"
config RMT_TOOLS_WEB_URI
string "Connect page URI"
default "/rmt"
help
WEB page URI to set ssid/pass.
config RMT_TOOLS_WEB_WS_URI
string "Connect ws URI"
default "/rmt/ws"
help
WEB ws URI to set ssid/pass.
config RMT_TOOLS_START_WS_SERVER
bool "Start WS server"
default y
help
Start new WS server, or only register_uri_handlers on existing WS server.
if RMT_TOOLS_START_WS_SERVER
config RMT_TOOLS_WIFI_CONNECT
bool "Connect wifi"
default y
help
Connect wifi or use on existing connection.
endif
if RMT_TOOLS_WIFI_CONNECT
config RMT_TOOLS_WIFI_SSID
string "wifi ssid"
default "myssid"
help
wifi ssid
config RMT_TOOLS_WIFI_PASS
string "wifi password"
default "mypass"
help
wifi password
endif
endmenu