1# Copyright (c) 2022 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4# some of the control procedures in the BT LL depend on
5# the following configs been set
6
7config SOC_COMPATIBLE_NRF
8	default y
9
10config BT_CTLR_DATA_LEN_UPDATE_SUPPORT
11	default y
12
13config BT_CTLR_PHY_UPDATE_SUPPORT
14	default y
15
16config BT_CTLR_PHY_CODED_SUPPORT
17	default y
18
19config BT_CTLR_PHY_2M_SUPPORT
20	default y
21
22config BT_CTLR_DF_SUPPORT
23	default y
24
25config BT_CTLR_DF_CTE_TX_SUPPORT
26	default y
27
28config BT_CTLR_DF_CTE_RX_SUPPORT
29	default y
30
31config BT_CTLR_DF_CTE_RX_SAMPLE_1US_SUPPORT
32	default y
33
34config BT_CTLR_DF_ANT_SWITCH_1US_SUPPORT
35	default y
36
37config BT_CTLR_DF_ANT_SWITCH_2US_SUPPORT
38	default y
39
40config ENTROPY_NRF_FORCE_ALT
41	default n
42
43config ENTROPY_NRF5_RNG
44	default n
45
46# Include Zephyr's Kconfig
47source "Kconfig"
48