Skip to content

Commit b35a10d

Browse files
committed
added GPIO pins for thr burnwire
1 parent 13e4f0d commit b35a10d

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

boards/rpi_pico2_rp2350a_m33.overlay

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,26 @@
44
};
55
};
66

7-
/ {
7+
/ {
88
chosen {
99
zephyr,console = &cdc_acm_uart0;
1010
};
11+
12+
burnwire0: burnwire0 {
13+
gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>;
14+
label = "Burnwire 0";
15+
};
16+
17+
burnwire1: burnwire1 {
18+
gpios = <&gpio0 29 GPIO_ACTIVE_HIGH>;
19+
label = "Burnwire 1";
20+
};
1121
};
1222

13-
/* Override the default LED definition to use GPIO 24 instead of GPIO 25 for PROVES FC board*/
23+
/* Override the default LED definition to use GPIO 23 instead of GPIO 25 for PROVES FC board*/
1424
&led0 {
15-
gpios = <&gpio0 24 GPIO_ACTIVE_HIGH>;
16-
label = "User LED GPIO24";
25+
gpios = <&gpio0 23 GPIO_ACTIVE_HIGH>;
26+
label = "User LED GPIO23";
1727
};
28+
29+

0 commit comments

Comments
 (0)