File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
boards/arm/nrf54l15pdk_nrf54l15 Expand file tree Collapse file tree 2 files changed +39
-1
lines changed 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
+
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
+ };
Original file line number Diff line number Diff line change 5
5
#
6
6
7
7
board_check_revision (FORMAT MAJOR.MINOR.PATCH
8
- VALID_REVISIONS 0.2.0
8
+ VALID_REVISIONS 0.2.0 0.3.0
9
9
DEFAULT_REVISION 0.2.0 )
You can’t perform that action at this time.
0 commit comments