1/* 2 * Copyright (c) 2020 Nordic Semiconductor ASA 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6/* I2C bus pins are exposed in the Arduino Uno header. 7 * 8 * Bus SDA SCL 9 * Pin Hdr Pin Hdr 10 * i2c1 PB9 D14 PB8 D15 11 * i2c3 PC1 A4 PC0 A5 12 * 13 * Short D14 to A4, and D15 to A5, for the test to pass. 14 */ 15 16&i2c1 { 17 eeprom0: eeprom@54 { 18 compatible = "zephyr,i2c-target-eeprom"; 19 reg = <0x54>; 20 address-width = <16>; 21 size = <1024>; 22 }; 23}; 24 25&i2c3 { 26 eeprom1: eeprom@56 { 27 compatible = "zephyr,i2c-target-eeprom"; 28 reg = <0x56>; 29 address-width = <16>; 30 size = <1024>; 31 }; 32}; 33