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.
|
|
|
|
|
2017-03-31 04:51:45 +00:00
|
|
|
menuconfig BLUEDROID_ENABLED
|
2017-03-07 17:20:33 +00:00
|
|
|
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-18 08:02:54 +00:00
|
|
|
int "Bluetooth event (callback to application) task stack size"
|
2017-03-31 04:51:45 +00:00
|
|
|
depends on BLUEDROID_ENABLED
|
2017-03-18 08:02:54 +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-18 08:02:54 +00:00
|
|
|
bool "Bluedroid memory debug"
|
2017-03-31 04:51:45 +00:00
|
|
|
depends on BLUEDROID_ENABLED
|
2017-03-18 08:02:54 +00:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
Bluedroid memory debug
|
2016-12-12 20:10:44 +00:00
|
|
|
|
2017-03-16 14:32:27 +00:00
|
|
|
config CLASSIC_BT_ENABLED
|
2017-03-18 08:02:54 +00:00
|
|
|
bool "Classic Bluetooth"
|
2017-03-31 04:51:45 +00:00
|
|
|
depends on BLUEDROID_ENABLED
|
2017-03-18 08:02:54 +00:00
|
|
|
default n
|
2017-03-16 14:32:27 +00:00
|
|
|
|
2017-02-21 09:46:59 +00:00
|
|
|
config BT_DRAM_RELEASE
|
2017-03-18 08:02:54 +00:00
|
|
|
bool "Release DRAM from Classic BT controller"
|
2017-03-31 04:51:45 +00:00
|
|
|
depends on BT_ENABLED && (!BLUEDROID_ENABLED || (BLUEDROID_ENABLED && !CLASSIC_BT_ENABLED))
|
2017-03-18 08:02:54 +00:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option should only be used when BLE only.
|
2017-03-30 13:16:11 +00:00
|
|
|
Enabling this option will release about 30K DRAM from Classic BT.
|
2017-03-18 08:02:54 +00:00
|
|
|
The released DRAM will be used as system heap memory.
|
2017-02-21 09:46:59 +00:00
|
|
|
|
2017-04-20 11:18:05 +00:00
|
|
|
config GATTS_ENABLE
|
|
|
|
bool "Set if enable the gatt server module(GATTS) in the stack or not"
|
|
|
|
depends on BLUEDROID_ENABLED
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option can be close when the app work only on gatt client mode
|
|
|
|
|
|
|
|
config GATTC_ENABLE
|
|
|
|
bool "Set if enable the gatt server module(GATTC) in the stack or not"
|
|
|
|
depends on BLUEDROID_ENABLED
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option can be close when the app work only on gatt server mode
|
|
|
|
|
|
|
|
config SMP_ENABLE
|
|
|
|
bool "Set if enable the ble security module (SMP module) or not"
|
|
|
|
depends on BLUEDROID_ENABLED
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option can be close when the app not used the ble security connect.
|
|
|
|
|
|
|
|
config BT_ACL_CONNECTIONS
|
|
|
|
int "Set the max connection number for the bt/ble device can accept, up to 7."
|
|
|
|
depends on BLUEDROID_ENABLED
|
|
|
|
default 4
|
|
|
|
help
|
|
|
|
This setting is used for the max connection link for the bt/ble device
|
|
|
|
|
2017-04-19 07:44:01 +00:00
|
|
|
config BT_STACK_NO_LOG
|
|
|
|
bool "Close the bluedroid bt stack log print"
|
|
|
|
depends on BLUEDROID_ENABLED
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This select can save the rowdata code size
|
|
|
|
|
2017-04-05 13:19:15 +00:00
|
|
|
#disable now for app cpu due to a known issue
|
2017-03-24 06:57:07 +00:00
|
|
|
config BTDM_CONTROLLER_RUN_APP_CPU
|
|
|
|
bool "Run controller on APP CPU"
|
|
|
|
depends on BT_ENABLED && !FREERTOS_UNICORE && 0
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Run controller on APP CPU.
|
2017-03-16 09:14:20 +00:00
|
|
|
|
2017-04-05 13:19:15 +00:00
|
|
|
config BTDM_CONTROLLER_RUN_CPU
|
|
|
|
int
|
|
|
|
depends on BT_ENABLED
|
|
|
|
default 1 if BTDM_CONTROLLER_RUN_APP_CPU
|
|
|
|
default 0
|
|
|
|
|
|
|
|
menuconfig BT_HCI_UART
|
2017-03-16 09:14:20 +00:00
|
|
|
bool "HCI use UART as IO"
|
2017-04-10 08:12:21 +00:00
|
|
|
depends on BT_ENABLED && !BLUEDROID_ENABLED
|
2017-03-16 09:14:20 +00:00
|
|
|
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.
|
|
|
|
|
2017-04-05 13:19:15 +00:00
|
|
|
config BT_HCI_UART_NO
|
2017-03-16 09:14:20 +00:00
|
|
|
int "UART Number for HCI"
|
2017-04-05 13:19:15 +00:00
|
|
|
depends on BT_HCI_UART
|
2017-03-16 09:14:20 +00:00
|
|
|
range 1 2
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
Uart number for HCI.
|
|
|
|
|
2017-04-05 13:19:15 +00:00
|
|
|
config BT_HCI_UART_BAUDRATE
|
2017-03-16 09:14:20 +00:00
|
|
|
int "UART Baudrate for HCI"
|
2017-04-05 13:19:15 +00:00
|
|
|
depends on BT_HCI_UART
|
2017-03-16 09:14:20 +00:00
|
|
|
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
|