samples: Bluetooth: hci_uart: Add preliminary DF support for nrf54l15pdk
Add preliminary direction finding support building hci_uart sample for nrf54l15pdk. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
10a466f31f
commit
4fb293224c
2 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
&uart20 {
|
||||||
|
compatible = "nordic,nrf-uarte";
|
||||||
|
current-speed = <1000000>;
|
||||||
|
status = "okay";
|
||||||
|
hw-flow-control;
|
||||||
|
};
|
||||||
|
|
||||||
|
&radio {
|
||||||
|
status = "okay";
|
||||||
|
/* This is an example number of antennas that may be available
|
||||||
|
* on antenna matrix board.
|
||||||
|
*/
|
||||||
|
dfe-antenna-num = <10>;
|
||||||
|
/* This is an example switch pattern that will be used to set an
|
||||||
|
* antenna for Tx PDU (period before start of Tx CTE).
|
||||||
|
*/
|
||||||
|
dfe-pdu-antenna = <0x0>;
|
||||||
|
|
||||||
|
/* These are example GPIO pin numbers that are provided to
|
||||||
|
* Radio peripheral. The pins will be acquired by Radio to
|
||||||
|
* drive antenna switching when AoD is enabled.
|
||||||
|
*/
|
||||||
|
dfegpio0-gpios = <&gpio1 4 0>;
|
||||||
|
dfegpio1-gpios = <&gpio1 5 0>;
|
||||||
|
dfegpio2-gpios = <&gpio1 6 0>;
|
||||||
|
dfegpio3-gpios = <&gpio1 7 0>;
|
||||||
|
};
|
|
@ -65,6 +65,7 @@ tests:
|
||||||
- nrf54l15pdk/nrf54l15/cpuapp
|
- nrf54l15pdk/nrf54l15/cpuapp
|
||||||
extra_args:
|
extra_args:
|
||||||
- OVERLAY_CONFIG=overlay-all-bt_ll_sw_split.conf
|
- OVERLAY_CONFIG=overlay-all-bt_ll_sw_split.conf
|
||||||
|
- DTC_OVERLAY_FILE=./boards/nrf54l15pdk_nrf54l15_cpuapp_df.overlay
|
||||||
tags:
|
tags:
|
||||||
- uart
|
- uart
|
||||||
- bluetooth
|
- bluetooth
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue