zephyr/drivers/bluetooth/hci/Kconfig.esp32
Sylvio Alves 685c6e42b8 driver: ble: add custom espressif kconfig
Adds ESP32 custom configurations for BLE driver.

Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
2024-10-27 20:53:48 -05:00

26 lines
566 B
Text

# Copyright 2024 Espressif Systems (Shanghai) PTE LTD
if BT_ESP32
choice ESP_BT_HEAP
prompt "Bluetooth adapter heap in use"
default ESP_BT_HEAP_RUNTIME
config ESP_BT_HEAP_RUNTIME
bool "Bluetooth adapter use ESP runtime heap"
depends on ESP_HEAP_RUNTIME
config ESP_BT_HEAP_SYSTEM
bool "Bluetooth adapter use system heap"
endchoice # ESP_BT_HEAP
config ESP32_BT_CONTROLLER_STACK_SIZE
int "Bluetooth controller stack size"
default 4096
config ESP32_BT_CONTROLLER_TASK_PRIO
int "Bluetooth controller task priority level"
default 2
endif # BT_ESP32