1/* Copyright (c) 2023 North River Systems Ltd
2 * SPDX-License-Identifier: Apache-2.0
3 */
4
5 #include <zephyr/dt-bindings/sensor/ina230.h>
6
7 &i2c0 {
8	 status = "okay";
9
10	/* Datasheet example and Default DT Configuration Test */
11	ina230_default_test: ina230@40 {
12		compatible = "ti,ina230";
13		reg = <0x40>;
14		rshunt-micro-ohms = <2000>;
15		current-lsb-microamps = <1000>;
16		status = "okay";
17	};
18
19	ina236_default_test: ina236@41 {
20		compatible = "ti,ina236";
21		reg = <0x41>;
22		rshunt-micro-ohms = <2000>;
23		current-lsb-microamps = <1000>;
24		status = "okay";
25	};
26};
27