mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-18 21:55:55 +00:00
Rename the BT_CONTROLLER prefix used in all of the Kconfig variables related to the Bluetooth controller to BT_CTLR. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
37 lines
719 B
Plaintext
37 lines
719 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
|
|
|
|
config BT_NRF51_PM
|
|
bool "nRF51 Power Management [EXPERIMENTAL]"
|
|
depends on BT_H4
|
|
help
|
|
Power Management support for Nordic BLE nRF51 chip. Allows to enable,
|
|
disable the chip and handle wakeups.
|
|
|
|
endmenu
|
|
|
|
endif # BT && ! BT_CTLR
|