File tree Expand file tree Collapse file tree 6 files changed +62
-11
lines changed
boards/nordic/nrf54lm20dk
samples/bluetooth/hci_uart Expand file tree Collapse file tree 6 files changed +62
-11
lines changed Original file line number Diff line number Diff line change 18
18
zephyr,bt-c2h-uart = &uart20;
19
19
zephyr,flash-controller = &rram_controller;
20
20
zephyr,flash = &cpuapp_rram;
21
- zephyr,bt-hci = &bt_hci_sdc ;
21
+ zephyr,bt-hci = &bt_hci_controller ;
22
22
zephyr,ieee802154 = &ieee802154;
23
23
};
24
24
};
Original file line number Diff line number Diff line change 18
18
};
19
19
};
20
20
21
- &bt_hci_sdc {
22
- status = "okay";
23
- };
24
-
25
21
&bt_hci_controller {
26
- status = "disabled ";
22
+ status = "okay ";
27
23
};
28
24
29
25
/* Get a node label for wi-fi spi to use in shield files */
Original file line number Diff line number Diff line change 277
277
/* Note: In the nRF Connect SDK the SoftDevice Controller
278
278
* is added and set as the default Bluetooth Controller.
279
279
*/
280
- bt_hci_sdc: bt_hci_sdc {
281
- compatible = "nordic,bt-hci-sdc";
282
- status = "disabled";
283
- };
284
-
285
280
bt_hci_controller: bt_hci_controller {
286
281
compatible = "zephyr,bt-hci-ll-sw-split";
287
282
status = "disabled";
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2024 Nordic Semiconductor ASA
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ &uart20 {
8
+ compatible = "nordic,nrf-uarte";
9
+ current-speed = <1000000>;
10
+ status = "okay";
11
+ hw-flow-control;
12
+ };
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2024 Nordic Semiconductor ASA
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ &uart20 {
8
+ compatible = "nordic,nrf-uarte";
9
+ current-speed = <1000000>;
10
+ status = "okay";
11
+ hw-flow-control;
12
+ };
13
+
14
+ &radio {
15
+ status = "okay";
16
+ /* This is an example number of antennas that may be available
17
+ * on antenna matrix board.
18
+ */
19
+ dfe-antenna-num = <10>;
20
+ /* This is an example switch pattern that will be used to set an
21
+ * antenna for Tx PDU (period before start of Tx CTE).
22
+ */
23
+ dfe-pdu-antenna = <0x0>;
24
+
25
+ /* These are example GPIO pin numbers that are provided to
26
+ * Radio peripheral. The pins will be acquired by Radio to
27
+ * drive antenna switching when AoD is enabled.
28
+ */
29
+ dfegpio0-gpios = <&gpio1 4 0>;
30
+ dfegpio1-gpios = <&gpio1 5 0>;
31
+ dfegpio2-gpios = <&gpio1 6 0>;
32
+ dfegpio3-gpios = <&gpio1 7 0>;
33
+ };
Original file line number Diff line number Diff line change 8
8
- nrf52dk/nrf52832
9
9
- nrf52840dk/nrf52840
10
10
- nrf21540dk/nrf52840
11
+ - nrf54l15dk/nrf54l15/cpuapp
12
+ - nrf54lm20dk/nrf54lm20a/cpuapp
11
13
integration_platforms :
12
14
- nrf52dk/nrf52832
13
15
- nrf52840dk/nrf52840
14
16
- nrf21540dk/nrf52840
17
+ - nrf54l15dk/nrf54l15/cpuapp
18
+ - nrf54lm20dk/nrf54lm20a/cpuapp
15
19
tags :
16
20
- uart
17
21
- bluetooth
@@ -98,3 +102,14 @@ tests:
98
102
tags :
99
103
- uart
100
104
- bluetooth
105
+ sample.bluetooth.hci_uart.nrf54lm20a.all :
106
+ harness : bluetooth
107
+ platform_allow : nrf54lm20dk/nrf54lm20a/cpuapp
108
+ integration_platforms :
109
+ - nrf54lm20dk/nrf54lm20a/cpuapp
110
+ extra_args :
111
+ - EXTRA_CONF_FILE=overlay-all-bt_ll_sw_split.conf
112
+ - DTC_OVERLAY_FILE=./boards/nrf54lm20dk_nrf54lm20a_cpuapp_df.overlay
113
+ tags :
114
+ - uart
115
+ - bluetooth
You can’t perform that action at this time.
0 commit comments