Skip to content

Commit d98c2f0

Browse files
committed
kconfig: BT: Default to using BT_CTLR when BT
As reported in issue #9494, BT samples are using the off-chip UART-based BT controller on 52810. But the on-chip BT controller is supported on 52810, so this is the reasonable default when BT is enabled. This patch enables BT_CTLR by default when BT is enabled. This resolves #9494. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
1 parent 99dc5ae commit d98c2f0

File tree

1 file changed

+5
-0
lines changed
  • boards/arm/nrf52810_pca10040

1 file changed

+5
-0
lines changed

boards/arm/nrf52810_pca10040/Kconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,9 @@ config BOARD_ENABLE_DCDC
1111
select SOC_DCDC_NRF52X
1212
default y
1313

14+
# BT_CTLR depends on BT. When BT is enabled we should default to also
15+
# enabling the controller.
16+
config BT_CTLR
17+
default y if BT
18+
1419
endif # BOARD_NRF52810_PCA10040

0 commit comments

Comments
 (0)