2019-09-23 16:10:57 +02:00
|
|
|
menu "Bluetooth"
|
2020-07-09 20:58:13 +08:00
|
|
|
visible if (IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
|
2017-10-20 17:09:03 +08:00
|
|
|
|
2019-01-25 17:10:53 +01:00
|
|
|
config BT_ENABLED
|
|
|
|
bool "Bluetooth"
|
2020-07-09 20:58:13 +08:00
|
|
|
depends on (IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3)
|
2019-01-25 17:10:53 +01:00
|
|
|
help
|
|
|
|
Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.
|
|
|
|
|
2020-07-31 13:10:18 +00: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
|
|
|
|
|
2020-07-09 20:58:13 +08:00
|
|
|
menu "Bluetooth controller(ESP32 Dual Mode Bluetooth)"
|
2021-09-13 15:42:49 +08:00
|
|
|
depends on BT_ENABLED && IDF_TARGET_ESP32
|
2019-01-25 17:10:53 +01:00
|
|
|
|
2020-07-09 20:58:13 +08:00
|
|
|
source "$IDF_PATH/components/bt/controller/esp32/Kconfig.in"
|
|
|
|
endmenu
|
2019-03-01 21:59:55 +08:00
|
|
|
|
2020-07-09 20:58:13 +08:00
|
|
|
menu "Bluetooth controller(ESP32C3 Bluetooth Low Energy)"
|
2021-09-13 15:42:49 +08:00
|
|
|
depends on BT_ENABLED && IDF_TARGET_ESP32C3
|
2019-03-01 21:59:55 +08:00
|
|
|
|
2020-07-09 20:58:13 +08:00
|
|
|
source "$IDF_PATH/components/bt/controller/esp32c3/Kconfig.in"
|
|
|
|
endmenu
|
2019-09-12 14:12:13 +08:00
|
|
|
|
2020-07-09 20:58:13 +08:00
|
|
|
menu "Bluetooth controller(ESP32S3 Bluetooth Low Energy)"
|
2021-09-13 15:42:49 +08:00
|
|
|
depends on BT_ENABLED && IDF_TARGET_ESP32S3
|
2019-09-12 14:12:13 +08:00
|
|
|
|
2020-07-09 20:58:13 +08:00
|
|
|
source "$IDF_PATH/components/bt/controller/esp32s3/Kconfig.in"
|
2019-01-25 17:10:53 +01:00
|
|
|
endmenu
|
|
|
|
|
2019-06-25 09:03:58 +08:00
|
|
|
choice BT_HOST
|
|
|
|
prompt "Bluetooth Host"
|
2020-07-09 20:58:13 +08:00
|
|
|
depends on BT_ENABLED && (BTDM_CTRL_HCI_MODE_VHCI || BT_CTRL_HCI_MODE_VHCI)
|
2019-06-25 09:03:58 +08:00
|
|
|
default BT_BLUEDROID_ENABLED
|
2019-01-25 17:10:53 +01:00
|
|
|
help
|
2019-06-25 09:03:58 +08:00
|
|
|
This helps to choose Bluetooth host stack
|
2019-01-25 17:10:53 +01:00
|
|
|
|
2019-06-25 09:03:58 +08: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 17:10:53 +01:00
|
|
|
|
2019-06-25 09:03:58 +08: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 17:10:53 +01:00
|
|
|
|
2019-11-13 16:56:23 +05:30
|
|
|
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 17:10:53 +01:00
|
|
|
endchoice
|
|
|
|
|
2019-06-25 09:03:58 +08:00
|
|
|
menu "Bluedroid Options"
|
|
|
|
visible if BT_BLUEDROID_ENABLED
|
2019-01-25 17:10:53 +01:00
|
|
|
|
2019-06-30 16:39:00 +08:00
|
|
|
source "$IDF_PATH/components/bt/host/bluedroid/Kconfig.in"
|
2019-06-25 09:03:58 +08:00
|
|
|
endmenu
|
|
|
|
menu "NimBLE Options"
|
|
|
|
visible if BT_NIMBLE_ENABLED
|
2019-04-16 11:11:08 +08:00
|
|
|
|
2019-06-30 16:39:00 +08:00
|
|
|
source "$IDF_PATH/components/bt/host/nimble/Kconfig.in"
|
2019-06-25 09:03:58 +08:00
|
|
|
endmenu
|
2017-10-20 17:09:03 +08:00
|
|
|
|
|
|
|
endmenu
|
2019-01-07 15:16:47 +08:00
|
|
|
|
|
|
|
menuconfig BLE_MESH
|
2019-06-30 16:39:00 +08:00
|
|
|
bool "ESP BLE Mesh Support"
|
2019-12-12 16:02:36 +01:00
|
|
|
depends on BT_ENABLED
|
2019-01-07 15:16:47 +08:00
|
|
|
help
|
2019-06-30 16:39:00 +08:00
|
|
|
This option enables ESP BLE Mesh support. The specific features that are
|
2019-01-07 15:16:47 +08: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 16:39:00 +08:00
|
|
|
source "$IDF_PATH/components/bt/esp_ble_mesh/Kconfig.in"
|