-
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 "I2C WS Tools Configuration"
config I2C_TOOLS_WEB_URI
string "Connect page URI"
default "/i2c"
help
WEB page URI to set ssid/pass.
config I2C_TOOLS_WEB_WS_URI
string "Connect ws URI"
default "/i2c/ws"
help
WEB ws URI to set ssid/pass.
config I2C_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 I2C_TOOLS_START_WS_SERVER
config I2C_TOOLS_WIFI_CONNECT
bool "Connect wifi"
default y
help
Connect wifi or use on existing connection.
endif
if I2C_TOOLS_WIFI_CONNECT
config I2C_TOOLS_WIFI_SSID
string "wifi ssid"
default "myssid"
help
wifi ssid
config I2C_TOOLS_WIFI_PASS
string "wifi password"
default "mypass"
help
wifi password
endif
endmenu