2017-01-10 05:39:43 +00:00
|
|
|
menuconfig BT_ENABLED
|
|
|
|
bool "Bluetooth"
|
|
|
|
help
|
2017-03-07 17:20:33 +00:00
|
|
|
Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.
|
|
|
|
|
|
|
|
config BLUEDROID_ENABLED
|
|
|
|
bool "Bluedroid Bluetooth stack enabled"
|
|
|
|
depends on BT_ENABLED
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This enables the default Bluedroid Bluetooth stack
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-11-25 15:37:46 +00:00
|
|
|
config BTC_TASK_STACK_SIZE
|
2017-03-16 09:14:20 +00:00
|
|
|
int "Bluetooth event (callback to application) task stack size"
|
2017-01-10 05:04:04 +00:00
|
|
|
depends on BT_ENABLED
|
2017-03-16 09:14:20 +00:00
|
|
|
default 3072
|
|
|
|
help
|
|
|
|
This select btc task stack size
|
2016-11-25 15:37:46 +00:00
|
|
|
|
2016-12-12 20:10:44 +00:00
|
|
|
config BLUEDROID_MEM_DEBUG
|
2017-03-16 09:14:20 +00:00
|
|
|
bool "Bluedroid memory debug"
|
2017-01-10 05:04:04 +00:00
|
|
|
depends on BT_ENABLED
|
2017-03-16 09:14:20 +00:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
Bluedroid memory debug
|
2016-12-12 20:10:44 +00:00
|
|
|
|
2017-02-21 09:46:59 +00:00
|
|
|
config BT_DRAM_RELEASE
|
2017-03-16 09:14:20 +00:00
|
|
|
bool "Release DRAM from Classic BT controller"
|
2017-02-21 09:46:59 +00:00
|
|
|
depends on BT_ENABLED
|
2017-03-16 09:14:20 +00:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option should only be used when BLE only.
|
|
|
|
Open this option will release about 30K DRAM from Classic BT.
|
|
|
|
The released DRAM will be used as system heap memory.
|
|
|
|
|
|
|
|
#config BTDM_CONTROLLER_RUN_APP_CPU
|
|
|
|
# bool "Run controller on APP CPU"
|
|
|
|
# depends on BT_ENABLED
|
|
|
|
# default n
|
|
|
|
# help
|
|
|
|
# Run controller on APP CPU.
|
|
|
|
|
|
|
|
menuconfig HCI_UART
|
|
|
|
bool "HCI use UART as IO"
|
|
|
|
depends on BT_ENABLED
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Default HCI use VHCI, if this option choose, HCI will use UART(0/1/2) as IO.
|
|
|
|
Besides, it can set uart number and uart baudrate.
|
|
|
|
|
|
|
|
config HCI_UART_NO
|
|
|
|
int "UART Number for HCI"
|
|
|
|
depends on HCI_UART
|
|
|
|
range 1 2
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
Uart number for HCI.
|
|
|
|
|
|
|
|
config HCI_UART_BAUDRATE
|
|
|
|
int "UART Baudrate for HCI"
|
|
|
|
depends on HCI_UART
|
|
|
|
range 115200 921600
|
|
|
|
default 921600
|
|
|
|
help
|
|
|
|
UART Baudrate for HCI. Please use standard baudrate.
|
2017-02-21 09:46:59 +00:00
|
|
|
|
2016-09-21 01:04:16 +00:00
|
|
|
# Memory reserved at start of DRAM for Bluetooth stack
|
|
|
|
config BT_RESERVE_DRAM
|
|
|
|
hex
|
2017-01-10 05:04:04 +00:00
|
|
|
default 0x10000 if BT_ENABLED
|
2016-09-28 05:24:58 +00:00
|
|
|
default 0
|