Commit 7aff307b authored by Phuc Pham's avatar Phuc Pham Committed by Benjamin Cabé
Browse files

tests: drivers: i2c: Add I2C support for Renesas RZ/A3UL, T2M, N2L, V2L



Add I2C test support for Renesas RZ/A3UL-SMARC,
RZ/T2M-RSK, RZ/N2L-RSK, RZ/V2L-SMARC

Signed-off-by: default avatarPhuc Pham <phuc.pham.xr@bp.renesas.com>
Signed-off-by: default avatarNhut Nguyen <nhut.nguyen.kc@renesas.com>
parent d58300b0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
CONFIG_SENSOR_GY271_HMC=y
+14 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 Renesas Electronics Corporation
 * SPDX-License-Identifier: Apache-2.0
 */

/ {
	aliases {
		i2c-0 = &i2c1;
	};
};

&i2c1 {
	status = "okay";
};
+1 −0
Original line number Diff line number Diff line
CONFIG_SENSOR_GY271_HMC=y
+9 −0
Original line number Diff line number Diff line
/ {
	aliases {
		i2c-0 = &i2c1;
	};
};

&i2c1 {
	status = "okay";
};
+1 −0
Original line number Diff line number Diff line
CONFIG_SENSOR_GY271_HMC=y
Loading