1# Bluetooth co-existence configuration options
2
3# Copyright (c) 2022 Dronetag
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig BT_CTLR_COEX_DRIVERS
7	bool "Bluetooth Co-existence Drivers"
8	default y
9	depends on HAS_BT_CTLR && DT_HAS_GPIO_RADIO_COEX_ENABLED
10
11if BT_CTLR_COEX_DRIVERS
12
13config BT_CTLR_COEX_TICKER
14	bool "Coexistence Ticker"
15	help
16	  When enabled Coexistence device implementation is included in
17	  the controller. Which abort any radio states, when coex pin is asserted.
18
19endif # BT_CTLR_COEX_DRIVERS
20