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 *  i2c1    PB9   CN5:9       PB8   CN5:10
8 *  i2c3    PC9   CN10:1      PA8   CN9:8
9 *
10 * Short Pin PB9 to PC9, and PB8 to PA8, for the test to pass.
11 */
12
13&i2c1 {
14	eeprom0: eeprom@54 {
15		compatible = "zephyr,i2c-target-eeprom";
16		reg = <0x54>;
17		size = <256>;
18	};
19};
20
21&i2c3 {
22	eeprom1: eeprom@56 {
23		compatible = "zephyr,i2c-target-eeprom";
24		reg = <0x56>;
25		size = <256>;
26	};
27};
28