1/* 2 * Copyright 2025 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* 8 * This is a loopback setup for the mcxw72_evk 9 * To test this sample, connect J1.5 <-> J2.1 and J1.7 <-> J2.3 10 */ 11&lpi2c1 { 12 status = "okay"; 13 eeprom0: eeprom@54 { 14 compatible = "zephyr,i2c-target-eeprom"; 15 reg = <0x54>; 16 size = <256>; 17 }; 18}; 19 20&lpi2c0 { 21 status = "okay"; 22 pinctrl-0 = <&pinmux_lpi2c0>; 23 pinctrl-names = "default"; 24 eeprom1: eeprom@56 { 25 compatible = "zephyr,i2c-target-eeprom"; 26 reg = <0x56>; 27 size = <256>; 28 }; 29}; 30 31&gpiob { 32 status = "okay"; 33}; 34