1# Copyright (c) 2023 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config USBD_BT_HCI
5	bool "Bluetooth HCI USB Transport Layer"
6	select BT
7	select BT_HCI_RAW
8	help
9	  Bluetooth HCI USB Transport Layer
10
11if USBD_BT_HCI
12
13config USBD_BT_HCI_TX_THREAD_PRIORITY
14	int "TX thread priority"
15	default 8
16	help
17	  Bluetooth HCI USB Transport Layer TX thread priority.
18
19config USBD_BT_HCI_TX_STACK_SIZE
20	int "TX thread stack size"
21	default 512
22	help
23	  Bluetooth HCI USB Transport Layer TX thread stack size.
24
25config USBD_BT_HCI_RX_THREAD_PRIORITY
26	int "RX thread priority"
27	default 8
28	help
29	  Bluetooth HCI USB Transport Layer RX thread priority.
30
31module = USBD_BT_HCI
32module-str = usbd bt hci
33source "subsys/logging/Kconfig.template.log_config"
34
35endif
36