Skip to content

Commit e7bd0d1

Browse files
committed
[nrf fromtree] samples: tests: Add support to tests on nrf54l15 DK
Align all existing samples/tests/applications which contains nrf54l15pdk/nrf54l15/* by adding nrf54l15dk/nrf54l15/* to enable twister builds. Signed-off-by: Katarzyna Giądła <[email protected]> Signed-off-by: Grzegorz Chwierut <[email protected]> (cherry picked from commit 436d1bf)
1 parent b83478a commit e7bd0d1

File tree

71 files changed

+412
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+412
-89
lines changed

samples/bluetooth/beacon/sample.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ tests:
88
- qemu_x86
99
- nrf51dk/nrf51822
1010
- nrf52dk/nrf52832
11+
- nrf54l15dk/nrf54l15/cpuapp
1112
- nrf54l15pdk/nrf54l15/cpuapp
1213
tags: bluetooth
1314
integration_platforms:
1415
- qemu_cortex_m3
1516
- nrf51dk/nrf51822
1617
- nrf52dk/nrf52832
17-
- nrf54l15pdk/nrf54l15/cpuapp
18+
- nrf54l15dk/nrf54l15/cpuapp
1819
sample.bluetooth.beacon-coex:
1920
extra_args:
2021
- CONF_FILE="prj-coex.conf"
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
&wdt31 {
7+
&uart20 {
8+
compatible = "nordic,nrf-uarte";
9+
current-speed = <1000000>;
810
status = "okay";
11+
hw-flow-control;
912
};
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
};

samples/bluetooth/hci_uart/sample.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,17 @@ tests:
6868
- uart
6969
- bluetooth
7070
sample.bluetooth.hci_uart.nrf54l15.all:
71+
harness: bluetooth
72+
platform_allow: nrf54l15dk/nrf54l15/cpuapp
73+
integration_platforms:
74+
- nrf54l15dk/nrf54l15/cpuapp
75+
extra_args:
76+
- OVERLAY_CONFIG=overlay-all-bt_ll_sw_split.conf
77+
- DTC_OVERLAY_FILE=./boards/nrf54l15dk_nrf54l15_cpuapp_df.overlay
78+
tags:
79+
- uart
80+
- bluetooth
81+
sample.bluetooth.hci_uart.nrf54l15pdk.all:
7182
harness: bluetooth
7283
platform_allow: nrf54l15pdk/nrf54l15/cpuapp
7384
integration_platforms:

samples/bluetooth/peripheral_hr/sample.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ tests:
1313
- nrf52dk/nrf52832
1414
- nrf52840dk/nrf52840
1515
- nrf5340dk/nrf5340/cpuapp
16+
- nrf54l15dk/nrf54l15/cpuapp
1617
- nrf54l15pdk/nrf54l15/cpuapp
1718
integration_platforms:
1819
- qemu_cortex_m3
@@ -22,7 +23,7 @@ tests:
2223
- nrf52dk/nrf52832
2324
- nrf52840dk/nrf52840
2425
- nrf5340dk/nrf5340/cpuapp
25-
- nrf54l15pdk/nrf54l15/cpuapp
26+
- nrf54l15dk/nrf54l15/cpuapp
2627
tags: bluetooth
2728
sample.bluetooth.peripheral_hr.minimal:
2829
harness: bluetooth

samples/boards/nordic/system_off/sample.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tests:
88
integration_platforms:
99
- nrf52840dk/nrf52840
1010
platform_allow:
11-
- nrf54l15pdk/nrf54l15/cpuapp
11+
- nrf54l15dk/nrf54l15/cpuapp
1212
- nrf52840dk/nrf52840
1313
- nrf52dk/nrf52832
1414
- nrf51dk/nrf51822
@@ -22,10 +22,10 @@ tests:
2222
extra_configs:
2323
- CONFIG_APP_USE_NRF_RETENTION=y
2424
sample.boards.nrf.system_off.retained_mem:
25-
extra_args: DTC_OVERLAY_FILE="boards/nrf54l15pdk_nrf54l15_cpuapp_retained_mem.overlay"
25+
extra_args: DTC_OVERLAY_FILE="boards/nrf54l15dk_nrf54l15_cpuapp_retained_mem.overlay"
2626
build_only: true
2727
platform_allow:
28-
- nrf54l15pdk/nrf54l15/cpuapp
28+
- nrf54l15dk/nrf54l15/cpuapp
2929
extra_configs:
3030
- CONFIG_APP_USE_RETAINED_MEM=y
3131
- CONFIG_RETAINED_MEM=y

samples/drivers/adc/adc_dt/sample.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tests:
1515
- stm32h735g_disco
1616
- nrf51dk/nrf51822
1717
- nrf52840dk/nrf52840
18-
- nrf54l15pdk/nrf54l15/cpuapp
18+
- nrf54l15dk/nrf54l15/cpuapp
1919
- nrf54h20dk/nrf54h20/cpuapp
2020
- mec172xevb_assy6906
2121
- gd32f350r_eval

0 commit comments

Comments
 (0)