1/* 2 * Copyright 2023 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 8/* 9 * Note: this sample requires the board to be modified! Populate resistors 10 * R362 and R356. 11 * To test this sample, connect J17.9<->J17.3 (SDA), J17.10<->J17.6 (SCL) 12 */ 13 14 15&lpi2c1 { 16 status = "okay"; 17 eeprom0: eeprom@54 { 18 compatible = "zephyr,i2c-target-eeprom"; 19 reg = <0x54>; 20 size = <256>; 21 }; 22}; 23 24&lpi2c3 { 25 status = "okay"; 26 eeprom1: eeprom@56 { 27 compatible = "zephyr,i2c-target-eeprom"; 28 reg = <0x56>; 29 size = <256>; 30 }; 31}; 32