2018-03-30 02:36:03 +02:00
|
|
|
#
|
2018-04-20 01:48:04 +02: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 02:36:03 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
if DRIVERS_BLUETOOTH
|
|
|
|
|
|
|
|
config BLUETOOTH_UART
|
|
|
|
bool "Bluetooth UART driver"
|
|
|
|
default n
|
2018-04-17 21:07:28 +02:00
|
|
|
select SCHED_HPWORK
|
2018-03-30 02:36:03 +02:00
|
|
|
---help---
|
|
|
|
Enable Bluetooth UART driver.
|
|
|
|
|
2018-04-20 01:48:04 +02:00
|
|
|
config BLUETOOTH_UART_GENERIC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
if BLUETOOTH_UART
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Bluetooth UART HCI device"
|
|
|
|
default BLUETOOTH_UART_OTHER
|
|
|
|
|
|
|
|
config BLUETOOTH_UART_BT860
|
|
|
|
bool "Laird BT860"
|
|
|
|
select BLUETOOTH_UART_GENERIC
|
|
|
|
|
2019-09-21 15:16:37 +02:00
|
|
|
config BLUETOOTH_UART_SHIM
|
|
|
|
bool "Generic shim to serial port"
|
|
|
|
|
2018-04-20 01:48:04 +02:00
|
|
|
config BLUETOOTH_UART_CC2564
|
|
|
|
bool "TI CC2564"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
|
|
|
|
config BLUETOOTH_UART_OTHER
|
|
|
|
bool "Other generic HCI UART device"
|
|
|
|
select BLUETOOTH_UART_GENERIC
|
|
|
|
|
|
|
|
endchoice # Bluetooth UART HCI device
|
|
|
|
|
2018-04-18 20:46:47 +02:00
|
|
|
config BLUETOOTH_UART_DUMP
|
|
|
|
bool "Dump HCI UART I/O buffers"
|
|
|
|
default n
|
2018-04-20 01:48:04 +02:00
|
|
|
depends on DEBUG_WIRELESS_INFO
|
2018-04-18 20:46:47 +02:00
|
|
|
---help---
|
|
|
|
Dump the full content of all outgoing and incoming messages.
|
|
|
|
|
2018-04-20 01:48:04 +02:00
|
|
|
endif # BLUETOOTH_UART
|
|
|
|
|
2018-04-03 17:00:18 +02: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 02:36:03 +02:00
|
|
|
endif # DRIVERS_BLUETOOTH
|