1/* SPDX-License-Identifier: Apache-2.0 */ 2 3/* I2C bus pins are exposed on the ST morpho header. 4 * 5 * Bus SDA SCL 6 * Pin Hdr Pin Hdr 7 * i2c2 PA11 CN10:5 PA12 CN10:3 8 * i2c3 PB14 CN7:36 PB13 CN7:38 9 * 10 * Short Pin PA11 to PB14, and PA12 to PB13, for the test to pass. 11 */ 12 13&i2c2 { 14 eeprom1: eeprom@56 { 15 compatible = "zephyr,i2c-target-eeprom"; 16 reg = <0x56>; 17 size = <256>; 18 }; 19}; 20 21&i2c3 { 22 pinctrl-0 = <&i2c3_scl_pb13 &i2c3_sda_pb14>; 23 pinctrl-names = "default"; 24 status = "okay"; 25 clock-frequency = <I2C_BITRATE_FAST>; 26 eeprom0: eeprom@54 { 27 compatible = "zephyr,i2c-target-eeprom"; 28 reg = <0x54>; 29 size = <256>; 30 }; 31}; 32