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
|
|
|
|
|
|
|
|
endmenu
|