2018-03-30 08:36:03 +08:00
|
|
|
#
|
2018-04-20 07:48:04 +08:00
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2018-03-30 08:36:03 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
if DRIVERS_BLUETOOTH
|
|
|
|
|
|
|
|
config BLUETOOTH_UART
|
|
|
|
bool "Bluetooth UART driver"
|
|
|
|
default n
|
2018-04-18 03:07:28 +08:00
|
|
|
select SCHED_HPWORK
|
2022-02-21 16:10:37 +08:00
|
|
|
depends on ALLOW_BSD_COMPONENTS
|
2018-03-30 08:36:03 +08:00
|
|
|
---help---
|
|
|
|
Enable Bluetooth UART driver.
|
|
|
|
|
2018-04-20 07:48:04 +08:00
|
|
|
config BLUETOOTH_UART_GENERIC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2019-10-04 23:29:51 +08:00
|
|
|
config BLUETOOTH_UART_SHIM
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2018-04-20 07:48:04 +08:00
|
|
|
if BLUETOOTH_UART
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Bluetooth UART HCI device"
|
|
|
|
default BLUETOOTH_UART_OTHER
|
|
|
|
|
|
|
|
config BLUETOOTH_UART_CC2564
|
|
|
|
bool "TI CC2564"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
|
2019-10-04 23:29:51 +08:00
|
|
|
config BLUETOOTH_BCM4343X
|
|
|
|
bool "Broadcom (Cypress) BCM4343X device support"
|
|
|
|
---help---
|
|
|
|
Enables download support for the bluetooth component of BCM4343X devices.
|
|
|
|
Note that firmware needs to be provided for these devices to operate. In
|
|
|
|
general this firmware is available in the Cypress WICED SDK.
|
|
|
|
|
2018-04-20 07:48:04 +08:00
|
|
|
config BLUETOOTH_UART_OTHER
|
|
|
|
bool "Other generic HCI UART device"
|
|
|
|
select BLUETOOTH_UART_GENERIC
|
|
|
|
|
|
|
|
endchoice # Bluetooth UART HCI device
|
|
|
|
|
2018-04-19 02:46:47 +08:00
|
|
|
config BLUETOOTH_UART_DUMP
|
|
|
|
bool "Dump HCI UART I/O buffers"
|
|
|
|
default n
|
2018-04-20 07:48:04 +08:00
|
|
|
depends on DEBUG_WIRELESS_INFO
|
2018-04-19 02:46:47 +08:00
|
|
|
---help---
|
|
|
|
Dump the full content of all outgoing and incoming messages.
|
|
|
|
|
2018-04-20 07:48:04 +08:00
|
|
|
endif # BLUETOOTH_UART
|
|
|
|
|
2018-04-03 23:00:18 +08:00
|
|
|
config BLUETOOTH_NULL
|
|
|
|
bool "NULL Bluetooth device"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
A do-nothing Bluetooth device driver to permit some basic testing of
|
|
|
|
the Bluetooth stack on the simulator. This driver just "closes the
|
|
|
|
loop" and nothing more: It is a just a bit-bucket for outgoing
|
|
|
|
packets; it generates no incoming packets.
|
|
|
|
|
2018-03-30 08:36:03 +08:00
|
|
|
endif # DRIVERS_BLUETOOTH
|