/* SPDX-License-Identifier: Apache-2.0 */ /* I2C bus pins are exposed on the ST morpho header. * * Bus SDA SCL * Pin Hdr Pin Hdr * i2c1 PB9 CN10:5 PB8 CN10:3 * i2c2 PB11 CN10:18 PB10 CN10:25 * * Short Pin PB9 to PB11, and PB8 to PB10, for the test to pass. */ &i2c1 { eeprom0: eeprom@54 { compatible = "zephyr,i2c-target-eeprom"; reg = <0x54>; size = <256>; }; }; &i2c2 { pinctrl-0 = <&i2c2_scl_pb10 &i2c2_sda_pb11>; pinctrl-names = "default"; status = "okay"; eeprom1: eeprom@56 { compatible = "zephyr,i2c-target-eeprom"; reg = <0x56>; size = <256>; }; };