2018-07-30 16:10:10 +00:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_USE_SEC_1
|
2019-01-25 16:10:53 +00:00
|
|
|
bool
|
|
|
|
default y
|
|
|
|
prompt "Use Security Version 1"
|
|
|
|
help
|
|
|
|
Security version 1 used Curve25519 key exchange for establishing
|
|
|
|
secure session between device and client during provisioning
|
2018-07-30 16:10:10 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_USE_POP
|
2019-01-25 16:10:53 +00:00
|
|
|
bool
|
2019-05-09 14:43:06 +00:00
|
|
|
depends on EXAMPLE_USE_SEC_1
|
2019-01-25 16:10:53 +00:00
|
|
|
default y
|
|
|
|
prompt "Use proof-of-possession"
|
|
|
|
help
|
|
|
|
Proof-of-possession can be optionally used to prove that the device is indeed
|
|
|
|
in possession of the user who is provisioning the device. This proof-of-possession
|
|
|
|
is internally used to generate the shared secret through key exchange.
|
2018-07-30 16:10:10 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_POP
|
2019-01-25 16:10:53 +00:00
|
|
|
string "Proof-of-possession"
|
|
|
|
default "abcd1234"
|
2019-05-09 14:43:06 +00:00
|
|
|
depends on EXAMPLE_USE_POP
|
2018-07-30 16:10:10 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_RESET_PROVISIONED
|
2019-01-25 16:10:53 +00:00
|
|
|
bool
|
|
|
|
default n
|
|
|
|
prompt "Reset provisioned status of the device"
|
|
|
|
help
|
|
|
|
This erases the NVS to reset provisioned status of the device on every reboot.
|
2018-12-25 17:38:50 +00:00
|
|
|
Provisioned status is determined by the Wi-Fi STA configuration, saved on the NVS.
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_AP_RECONN_ATTEMPTS
|
2018-12-25 17:38:50 +00:00
|
|
|
int "Maximum AP connection attempts"
|
|
|
|
default 5
|
|
|
|
help
|
|
|
|
Set the maximum connection attempts to perform when connecting to a Wi-Fi AP.
|
2018-07-30 16:10:10 +00:00
|
|
|
|
|
|
|
endmenu
|