mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 17:52:41 +00:00
Update the native controller to the new HCI driver API. The devicetree node is placed under existing `radio` nodes, which seemed like the most intuitive option. Signed-off-by: Johan Hedberg <johan.hedberg@gmail.com>
28 lines
530 B
Plaintext
28 lines
530 B
Plaintext
# Bluetooth LE driver configuration options
|
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
# Bluetooth options
|
|
#
|
|
|
|
# Controller support is an HCI driver in itself, so these HCI driver
|
|
# options are only applicable if controller support hasn't been enabled.
|
|
menuconfig BT_DRIVERS
|
|
bool "Bluetooth drivers"
|
|
default y
|
|
depends on BT
|
|
|
|
if BT_DRIVERS
|
|
|
|
if BT_HCI
|
|
source "drivers/bluetooth/hci/Kconfig"
|
|
endif
|
|
|
|
if BT_CUSTOM
|
|
# Insert here any custom (non-HCI) offload drives
|
|
endif
|
|
|
|
endif # BT_DRIVERS
|