Deprecate BT_CTLR, and add a new HAS_BT_CTLR as a virtual option which specific users (like BT_LL_SW_SPLIT) select. This also means that we can remove all places that were forcefully enabling the BT_CTLR option, and instead we now depend on devicetree to get some local LL HCI driver enabled which in turn also enables the HAS_BT_CTLR option. Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
19 lines
514 B
Text
19 lines
514 B
Text
# Bluetooth co-existence configuration options
|
|
|
|
# Copyright (c) 2022 Dronetag
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig BT_CTLR_COEX_DRIVERS
|
|
bool "Bluetooth Co-existence Drivers"
|
|
default y
|
|
depends on HAS_BT_CTLR && DT_HAS_GPIO_RADIO_COEX_ENABLED
|
|
|
|
if BT_CTLR_COEX_DRIVERS
|
|
|
|
config BT_CTLR_COEX_TICKER
|
|
bool "Coexistence Ticker"
|
|
help
|
|
When enabled Coexistence device implementation is included in
|
|
the controller. Which abort any radio states, when coex pin is asserted.
|
|
|
|
endif # BT_CTLR_COEX_DRIVERS
|