2019-09-23 10:10:57 -04:00
|
|
|
menu "Bluetooth"
|
2020-07-09 08:58:13 -04:00
|
|
|
visible if (IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
|
2017-10-20 05:09:03 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config BT_ENABLED
|
|
|
|
bool "Bluetooth"
|
2020-07-09 08:58:13 -04:00
|
|
|
depends on (IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
|
|
|
Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.
|
|
|
|
|
2020-07-31 09:10:18 -04:00
|
|
|
config BT_SOC_SUPPORT_5_0
|
|
|
|
bool
|
|
|
|
depends on BT_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
|
|
|
|
default y if BT_ENABLED && (IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
|
|
|
|
default n
|
|
|
|
|
2021-09-13 03:58:29 -04:00
|
|
|
menu "Bluetooth controller"
|
|
|
|
depends on BT_ENABLED
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2021-09-13 03:58:29 -04:00
|
|
|
source "$IDF_PATH/components/bt/controller/$IDF_TARGET/Kconfig.in"
|
2019-01-25 11:10:53 -05:00
|
|
|
endmenu
|
|
|
|
|
2019-06-24 21:03:58 -04:00
|
|
|
choice BT_HOST
|
|
|
|
prompt "Bluetooth Host"
|
2020-07-09 08:58:13 -04:00
|
|
|
depends on BT_ENABLED && (BTDM_CTRL_HCI_MODE_VHCI || BT_CTRL_HCI_MODE_VHCI)
|
2019-06-24 21:03:58 -04:00
|
|
|
default BT_BLUEDROID_ENABLED
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
2019-06-24 21:03:58 -04:00
|
|
|
This helps to choose Bluetooth host stack
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2019-06-24 21:03:58 -04:00
|
|
|
config BT_BLUEDROID_ENABLED
|
|
|
|
bool "Bluedroid - Dual-mode"
|
|
|
|
help
|
|
|
|
This option is recommended for classic Bluetooth or for dual-mode
|
|
|
|
usecases
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2019-06-24 21:03:58 -04:00
|
|
|
config BT_NIMBLE_ENABLED
|
|
|
|
bool "NimBLE - BLE only"
|
|
|
|
help
|
|
|
|
This option is recommended for BLE only usecases to save on memory
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2019-11-13 06:26:23 -05:00
|
|
|
config BT_CONTROLLER_ONLY
|
|
|
|
bool "Controller Only"
|
|
|
|
help
|
|
|
|
This option is recommended when you want to communicate directly with the
|
|
|
|
controller (without any host) or when you are using any other host stack
|
|
|
|
not supported by Espressif (not mentioned here).
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
endchoice
|
|
|
|
|
2019-06-24 21:03:58 -04:00
|
|
|
menu "Bluedroid Options"
|
2021-09-13 03:58:29 -04:00
|
|
|
depends on BT_BLUEDROID_ENABLED
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2019-06-30 04:39:00 -04:00
|
|
|
source "$IDF_PATH/components/bt/host/bluedroid/Kconfig.in"
|
2019-06-24 21:03:58 -04:00
|
|
|
endmenu
|
|
|
|
menu "NimBLE Options"
|
2021-09-13 03:58:29 -04:00
|
|
|
depends on BT_NIMBLE_ENABLED
|
2019-04-15 23:11:08 -04:00
|
|
|
|
2019-06-30 04:39:00 -04:00
|
|
|
source "$IDF_PATH/components/bt/host/nimble/Kconfig.in"
|
2019-06-24 21:03:58 -04:00
|
|
|
endmenu
|
2017-10-20 05:09:03 -04:00
|
|
|
|
|
|
|
endmenu
|
2019-01-07 02:16:47 -05:00
|
|
|
|
|
|
|
menuconfig BLE_MESH
|
2019-06-30 04:39:00 -04:00
|
|
|
bool "ESP BLE Mesh Support"
|
2019-12-12 10:02:36 -05:00
|
|
|
depends on BT_ENABLED
|
2019-01-07 02:16:47 -05:00
|
|
|
help
|
2019-06-30 04:39:00 -04:00
|
|
|
This option enables ESP BLE Mesh support. The specific features that are
|
2019-01-07 02:16:47 -05:00
|
|
|
available may depend on other features that have been enabled in the
|
|
|
|
stack, such as Bluetooth Support, Bluedroid Support & GATT support.
|
|
|
|
|
2019-06-30 04:39:00 -04:00
|
|
|
source "$IDF_PATH/components/bt/esp_ble_mesh/Kconfig.in"
|