zephyr/subsys/bluetooth/controller/coex/Kconfig
Tomáš Beneš 14138d4a34 Bluetooth: Controller: Add coexistence implementation
To enable Bluetooth controller coexistence feature, there is
implementation of ticker task, which aborts any ongoing radio events
during assertion of the grant pin. This solves the co-existence issue
in the role of the subordinate transceiver.

Signed-off-by: Tomáš Beneš <tomas@dronetag.cz>
2023-03-16 14:37:55 +01:00

20 lines
476 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 n
depends on BT_CTLR
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