From cd71b07d89e312ab01537cdf0431519c952b43dc Mon Sep 17 00:00:00 2001 From: Piotr Pryga Date: Mon, 7 Jun 2021 13:39:18 +0200 Subject: [PATCH] samples: Bluetooth: df: Move BLE controller conf into board specific file Move configuration related with BLE controller into board specific file. That is required to allow building the sample for nRF5340 where BLE controller is not part of the sample image. Signed-off-by: Piotr Pryga --- .../boards/nrf52833dk_nrf52833.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 samples/bluetooth/direction_finding_connectionless_tx/boards/nrf52833dk_nrf52833.conf diff --git a/samples/bluetooth/direction_finding_connectionless_tx/boards/nrf52833dk_nrf52833.conf b/samples/bluetooth/direction_finding_connectionless_tx/boards/nrf52833dk_nrf52833.conf new file mode 100644 index 00000000000..8e43e75c274 --- /dev/null +++ b/samples/bluetooth/direction_finding_connectionless_tx/boards/nrf52833dk_nrf52833.conf @@ -0,0 +1,10 @@ +CONFIG_BT_CTLR=y +CONFIG_BT_LL_SW_SPLIT=y + +CONFIG_BT_CTLR_ADV_EXT=y +CONFIG_BT_CTLR_ADV_PERIODIC=y + +# Enable Direction Finding TX Feature including AoA and AoD +CONFIG_BT_CTLR_DF=y +CONFIG_BT_CTLR_DF_ANT_SWITCH_RX=n +CONFIG_BT_CTLR_DF_SCAN_CTE_RX=n