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/ {
14	aliases {
15		i2c-controller = &i2c1;
16		i2c-controller-target = &i2c2;
17	};
18};
19