1# Copyright 2024 Espressif Systems (Shanghai) PTE LTD 2 3if BT_ESP32 4 5choice ESP_BT_HEAP 6 prompt "Bluetooth adapter heap in use" 7 default ESP_BT_HEAP_RUNTIME 8 9 config ESP_BT_HEAP_RUNTIME 10 bool "Bluetooth adapter use ESP runtime heap" 11 depends on ESP_HEAP_RUNTIME 12 13 config ESP_BT_HEAP_SYSTEM 14 bool "Bluetooth adapter use system heap" 15 16endchoice # ESP_BT_HEAP 17 18config ESP32_BT_CONTROLLER_STACK_SIZE 19 int "Bluetooth controller stack size" 20 default 4096 21 22config ESP32_BT_CONTROLLER_TASK_PRIO 23 int "Bluetooth controller task priority level" 24 default 2 25 26endif # BT_ESP32 27