1/* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* To test this sample, connect J41.12 <-> J44.20 and J41.10 <-> J44.18 */ 8 9&lpi2c2 { 10 status = "okay"; 11 eeprom0: eeprom@54 { 12 compatible = "zephyr,i2c-target-eeprom"; 13 reg = <0x54>; 14 size = <256>; 15 }; 16}; 17 18&lpi2c3 { 19 status = "okay"; 20 eeprom1: eeprom@56 { 21 compatible = "zephyr,i2c-target-eeprom"; 22 reg = <0x56>; 23 size = <256>; 24 }; 25}; 26