Skip to content

Commit 9fa7eba

Browse files
gmarullcarlescufi
authored andcommitted
[nrf noup] app: add overlay for nRF54L15 DK (cpuapp)
So that application can be built for that board while being functional. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent ce4e811 commit 9fa7eba

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/* This devicetree overlay file will be automatically picked by the Zephyr
7+
* build system when building the sample for the nRF54l15 DK (cpuapp) board.
8+
* It shows how the ncs-example-application can be built on sample boards
9+
* already provided by Zephyr or NCS.
10+
*/
11+
12+
/ {
13+
example_sensor: example-sensor {
14+
compatible = "zephyr,example-sensor";
15+
input-gpios = <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
16+
};
17+
18+
blink_led: blink-led {
19+
compatible = "blink-gpio-led";
20+
led-gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>;
21+
blink-period-ms = <1000>;
22+
};
23+
};

app/sample.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ common:
99
build_only: true
1010
integration_platforms:
1111
- custom_plank
12+
- nrf54l15dk/nrf54l15/cpuapp
1213
tests:
1314
app.default: {}
1415
app.debug:

0 commit comments

Comments
 (0)