mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
menu "Example Configuration"
|
|
|
|
choice EXAMPLE_PROV_TRANSPORT
|
|
bool "Provisioning Transport"
|
|
default EXAMPLE_PROV_TRANSPORT_SOFTAP if IDF_TARGET_ESP32S2
|
|
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
|
|
depends on !IDF_TARGET_ESP32S2
|
|
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
|
|
|
|
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.
|
|
endmenu
|