2020-01-03 10:36:10 -05:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
|
|
|
choice EXAMPLE_PROV_TRANSPORT
|
|
|
|
bool "Provisioning Transport"
|
2020-12-28 06:08:37 -05:00
|
|
|
default EXAMPLE_PROV_TRANSPORT_SOFTAP if IDF_TARGET_ESP32S2
|
2020-01-03 10:36:10 -05:00
|
|
|
default EXAMPLE_PROV_TRANSPORT_BLE
|
|
|
|
help
|
|
|
|
Wi-Fi provisioning component offers both, SoftAP and BLE transports. Choose any one.
|
|
|
|
|
|
|
|
config EXAMPLE_PROV_TRANSPORT_BLE
|
|
|
|
bool "BLE"
|
|
|
|
select BT_ENABLED
|
2021-01-14 05:13:46 -05:00
|
|
|
depends on !IDF_TARGET_ESP32S2
|
2020-01-03 10:36:10 -05:00
|
|
|
config EXAMPLE_PROV_TRANSPORT_SOFTAP
|
|
|
|
bool "Soft AP"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config EXAMPLE_PROV_TRANSPORT
|
|
|
|
int
|
|
|
|
default 1 if EXAMPLE_PROV_TRANSPORT_BLE
|
|
|
|
default 2 if EXAMPLE_PROV_TRANSPORT_SOFTAP
|
|
|
|
|
2021-02-18 01:59:08 -05:00
|
|
|
config EXAMPLE_RESET_PROVISIONED
|
|
|
|
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.
|
|
|
|
Provisioned status is determined by the Wi-Fi STA configuration, saved on the NVS.
|
2021-02-18 05:45:21 -05:00
|
|
|
|
2021-05-28 07:43:25 -04:00
|
|
|
config EXAMPLE_RESET_PROV_MGR_ON_FAILURE
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
prompt "Reset provisioned credentials and state machine after session failure"
|
|
|
|
help
|
|
|
|
Enable reseting provisioned credentials and state machine after session failure.
|
|
|
|
This will restart the provisioning service after retries are exhausted.
|
|
|
|
|
|
|
|
config EXAMPLE_PROV_MGR_MAX_RETRY_CNT
|
|
|
|
int
|
|
|
|
default 5
|
|
|
|
prompt "Max retries before reseting provisioning state machine"
|
|
|
|
depends on EXAMPLE_RESET_PROV_MGR_ON_FAILURE
|
|
|
|
help
|
|
|
|
Set the Maximum retry to avoid reconnecting to an inexistent AP or if credentials
|
|
|
|
are misconfigured. Provisioned credentials are erased and internal state machine
|
|
|
|
is reset after this threshold is reached.
|
|
|
|
|
2021-02-18 05:45:21 -05:00
|
|
|
config EXAMPLE_PROV_SHOW_QR
|
|
|
|
bool "Show provisioning QR code"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Show the QR code for provisioning.
|
2020-01-03 10:36:10 -05:00
|
|
|
endmenu
|