1/* SPDX-License-Identifier: Apache-2.0 */
2
3/* I2C bus pins are exposed on the STMod+.
4 *
5 *  Bus        SDA               SCL
6 *          Pin   Hdr         Pin   Hdr
7 *  i2c1    PB9   CN3:10      PB8  CN3:7
8 *  i2c2    PH5   CN2:10      PH4  CN2:7
9 *
10 * Short Pin PB9 to PH5, and PB8 to PH4, for the test to pass.
11 */
12
13/delete-node/ &eeprom0;
14
15&i2c1 {
16	eeprom0: eeprom@54 {
17		compatible = "zephyr,i2c-target-eeprom";
18		reg = <0x54>;
19		size = <256>;
20	};
21};
22
23&i2c2 {
24	eeprom1: eeprom@56 {
25		compatible = "zephyr,i2c-target-eeprom";
26		reg = <0x56>;
27		size = <256>;
28	};
29};
30