File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
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
+ };
Original file line number Diff line number Diff line change 9
9
build_only : true
10
10
integration_platforms :
11
11
- custom_plank
12
+ - nrf54l15dk/nrf54l15/cpuapp
12
13
tests :
13
14
app.default : {}
14
15
app.debug :
You can’t perform that action at this time.
0 commit comments