bca3deb1e7
In order to generalize the currently specialized nRF51 IC setup hook, make the following changes: - Generalize the hook to bt_ic_setup() - Use a weak NOP version by default - Move the currently existing one to the board folder Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
30 lines
516 B
Plaintext
30 lines
516 B
Plaintext
# Kconfig - 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.
|
|
if BT && ! BT_CTLR
|
|
|
|
menu "Bluetooth Drivers"
|
|
|
|
if BT_HCI
|
|
source "drivers/bluetooth/hci/Kconfig"
|
|
endif
|
|
|
|
if BT_CUSTOM
|
|
# Insert here any custom (non-HCI) offload drives
|
|
endif
|
|
|
|
endmenu
|
|
|
|
endif # BT && ! BT_CTLR
|