1# INA226 Bidirectional Current/Power Monitor 2 3# Copyright 2024 NXP 4# SPDX-License-Identifier: Apache-2.0 5 6config INA226 7 bool "INA226 Current/Power Monitor" 8 default y 9 depends on DT_HAS_TI_INA226_ENABLED 10 select I2C 11 help 12 Enable driver for INA226 Bidirectional Current/Power Monitor. 13 14config INA226_VSHUNT 15 bool "INA226 VShunt Measurement Enable" 16 depends on DT_HAS_TI_INA226_ENABLED 17 help 18 Enable shunt voltage measurement for INA226. 19 20 This is the actual shunt voltage measured which is scaled within the 21 INA226 based upon the SHUNT_CAL register. This value is useful for 22 determining the measurement noise or debugging the SHUNT_CAL value. 23 24 Note that enabling this option requires an extra I2C read when the 25 SENSOR_CHAN_ALL is selected. Hence, only enable this option if the 26 shunt voltage measurement is required. 27