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