zephyr/subsys/bluetooth/controller/coex/Kconfig
Gerard Marull-Paretas 4f80e50b55 bluetooth: controller: coex: convert to DT device
Convert the driver to a dt-based device. Also update Kconfig so that it
depends on the right compatible being enabled, initialize in POST_KERNEL
(APPLICATION should not be used for devices) and remove one redundant
include.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
2023-09-15 16:04:19 +02:00

20 lines
510 B
Plaintext

# 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 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