1/* 2 * Copyright (c) 2021 Leonard Pollak 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&i2c1 { 8 status = "okay"; 9 compatible = "st,stm32-i2c-v1"; 10 clock-frequency = <I2C_BITRATE_FAST>; 11 12 ina219@40 { 13 status = "okay"; 14 compatible = "ti,ina219"; 15 reg = <0x40>; 16 brng = <0>; 17 pg = <0>; 18 sadc = <13>; 19 badc = <13>; 20 shunt-milliohm = <100>; 21 lsb-microamp = <10>; 22 }; 23}; 24