1/* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* To test this sample, connect 8 * LPI2C0 SCL(J2-20) --> LPI2C1 SCL(J2-10) 9 * LPI2C0 SDA(J2-18) --> LPI2C1 SDA(J2-12) 10 */ 11 12&lpi2c0 { 13 eeprom0: eeprom@54 { 14 compatible = "zephyr,i2c-target-eeprom"; 15 reg = <0x54>; 16 size = <256>; 17 }; 18}; 19 20&lpi2c1 { 21 eeprom1: eeprom@56 { 22 compatible = "zephyr,i2c-target-eeprom"; 23 reg = <0x56>; 24 size = <256>; 25 }; 26}; 27