Commit c1b36d7e authored by Fabio Baltieri's avatar Fabio Baltieri Committed by Dan Kalowsky
Browse files

boards/shields: arduino: add few zephyr_i2c labels



Some of these are allegedly ESLOV connectors and have an extra
identification pin, but there's adapters on the market to use them with
qwiic modules, let's label them so they can be used with other
zephyr_i2c shields.

Signed-off-by: default avatarFabio Baltieri <fabiobaltieri@google.com>
parent c90c2eb0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@
	clock-frequency = <48000000>;
};

&sercom0 {
zephyr_i2c: &sercom0 {
	status = "okay";
	compatible = "atmel,sam0-i2c";
	clock-frequency = <I2C_BITRATE_FAST>;
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@
};

/* I2C1 in datasheet */
&i2c1 {
zephyr_i2c: &i2c1 {
	compatible = "nordic,nrf-twim";
	/* Cannot be used together with spi1. */
	status = "okay";
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@
	};
};

&i2c1 {
zephyr_i2c: &i2c1 {
	status = "disabled";
	pinctrl-0 = <&i2c1_scl_pb8 &i2c1_sda_pb9>;
	pinctrl-names = "default";
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@
};

/* I2C1 in datasheet */
&i2c1 {
zephyr_i2c: &i2c1 {
	pinctrl-0 = <&i2c1_scl_pb6 &i2c1_sda_pb7>;
	pinctrl-names = "default";
	clock-frequency = <I2C_BITRATE_FAST>;
+1 −1
Original line number Diff line number Diff line
@@ -117,6 +117,6 @@
	status = "okay";
};

qwiic_i2c: &iic0 {};
zephyr_i2c: &iic0 {};
arduino_i2c: &iic1 {};
arduino_spi: &spi0 {};
Loading