Skip to content

Commit 3508dff

Browse files
committed
Update arduino_portenta_h7_m7.overlay
Added in the other two Wire objects to match the MBED version. i2cs = <&i2c3>, <&i2c1>, <&i2c4>; I checked it out with simple wire scanner sketch that checks Wire, Wire1 and Wire2. And then tried adding QWIIC Button first to the I2C0 section of breakout board and it was found on Wire. Moved it to I2C1 section and found with Wire1 and then moved to I2C2 section and found on Wire2
1 parent 1de91c2 commit 3508dff

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

loader/boards/arduino_portenta_h7_m7.overlay

+9-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@
2121
status = "okay";
2222
};
2323

24+
&i2c3 {
25+
status = "okay";
26+
};
27+
28+
&i2c1 {
29+
status = "okay";
30+
};
31+
2432
&i2c4 {
2533
status = "okay";
2634
};
@@ -98,7 +106,7 @@
98106

99107
serials = <&cdc_acm_uart0>,<&usart6>, <&usart1>, <&uart4>;
100108
cdc-acm = <&cdc_acm_uart0>;
101-
i2cs = <&i2c4>;
109+
i2cs = <&i2c3>, <&i2c1>, <&i2c4>;
102110
spis = <&spi2>;
103111
};
104112
};

0 commit comments

Comments
 (0)