Skip to content

Commit 93f8406

Browse files
barsokgmarull
authored andcommitted
[nrf fromlist] boards: nrf54l15pdk_nrf54l15_cpuapp: add support for PDK 0.3.0
Add support for the PDK 0.3.0 Upstream PR: zephyrproject-rtos/zephyr#70543 Signed-off-by: Bartosz Sokolski <[email protected]>
1 parent a503870 commit 93f8406

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
8+
&led0 {
9+
gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>;
10+
};
11+
12+
&led1 {
13+
gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>;
14+
};
15+
16+
&led2 {
17+
gpios = <&gpio2 7 GPIO_ACTIVE_HIGH>;
18+
};
19+
20+
&led3 {
21+
gpios = <&gpio1 14 GPIO_ACTIVE_HIGH>;
22+
};
23+
24+
&button0 {
25+
gpios = <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
26+
};
27+
28+
&button1 {
29+
gpios = <&gpio1 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
30+
};
31+
32+
&button2 {
33+
gpios = <&gpio1 8 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
34+
};
35+
36+
&button3 {
37+
gpios = <&gpio0 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
38+
};

boards/arm/nrf54l15pdk_nrf54l15/revision.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
#
66

77
board_check_revision(FORMAT MAJOR.MINOR.PATCH
8-
VALID_REVISIONS 0.2.0
8+
VALID_REVISIONS 0.2.0 0.3.0
99
DEFAULT_REVISION 0.2.0)

0 commit comments

Comments
 (0)