1/* SPDX-License-Identifier: Apache-2.0 */
2
3/* I2C bus pins are exposed on the ST P2 connector.
4 *
5 *  Bus        SDA               SCL
6 *          Pin   Hdr         Pin   Hdr
7 *  i2c1    PB7  P2:21        PB6  P2:22
8 *  i2c2    PA10 P2:43        PA9  P2:44
9 *
10 * Short Pin PB7 to PA10, and PB6 to PA9, for the test to pass.
11 */
12
13
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};
31