mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 17:33:08 +08:00
The INA219 is a combined voltage and current sensor that can measure up to 26 volts and a current that depends on an external shunt resistor. Connection happens via i2c/smbus and the chip features a power supply rail that is independent from the measured voltage, so it can measure low voltages.
This commit adds a driver for this chip. Right now it measures bus voltage and current, and does not use the internal calibrated current reading, nor the available power measurement.
This commit is contained in:
committed by
Gregory Nutt
parent
4a3c1ef2ac
commit
d16d4d5568
@@ -0,0 +1,144 @@
|
||||
/****************************************************************************
|
||||
* include/nuttx/sensors/ina219.h
|
||||
*
|
||||
* Copyright (C) 2017 Giorgio Groß. All rights reserved.
|
||||
* Author: Giorgio Groß <giorgio.gross@robodev.eu>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __INCLUDE_NUTTX_SENSORS_INA219_H
|
||||
#define __INCLUDE_NUTTX_SENSORS_INA219_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
#include <nuttx/sensors/ioctl.h>
|
||||
|
||||
#if defined(CONFIG_I2C) && defined(CONFIG_SENSORS_INA219)
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* INA219 Register Definitions ***********************************************/
|
||||
/* INA219 Config Register bits */
|
||||
|
||||
#define INA219_CONFIG_SADC_SHIFT 3
|
||||
#define INA219_CONFIG_SADC_MASK (15 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_9BIT ( 0 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_10BIT ( 1 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_11BIT ( 2 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_12BIT ( 3 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG2 ( 9 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG4 (10 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG8 (11 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG16 (12 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG32 (13 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG64 (14 << INA219_CONFIG_SADC_SHIFT)
|
||||
#define INA219_CONFIG_SADC_AVG128 (15 << INA219_CONFIG_SADC_SHIFT)
|
||||
|
||||
#define INA219_CONFIG_BADC_SHIFT 7
|
||||
#define INA219_CONFIG_BADC_MASK (15 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_9BIT ( 0 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_10BIT ( 1 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_11BIT ( 2 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_12BIT ( 3 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG2 ( 9 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG4 (10 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG8 (11 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG16 (12 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG32 (13 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG64 (14 << INA219_CONFIG_BADC_SHIFT)
|
||||
#define INA219_CONFIG_BADC_AVG128 (15 << INA219_CONFIG_BADC_SHIFT)
|
||||
|
||||
#define INA219_CONFIG_PGA_X1 (0 << 11) /* 40 mV shunt voltage range */
|
||||
#define INA219_CONFIG_PGA_X2 (1 << 11) /* 80 mV shunt voltage range */
|
||||
#define INA219_CONFIG_PGA_X4 (2 << 11) /* 160 mV shunt voltage range */
|
||||
#define INA219_CONFIG_PGA_X8 (3 << 11) /* 320 mV shunt voltage range */
|
||||
|
||||
#define INA219_CONFIG_RANGE_16V 0
|
||||
#define INA219_CONFIG_RANGE_32V (1 << 13)
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
struct i2c_master_s;
|
||||
|
||||
struct ina219_s
|
||||
{
|
||||
uint32_t voltage; /* [microvolt] max 4.2 kV - device max 26V */
|
||||
int32_t current; /* [microampere] max 2.1 kA - sensor is bidirectional */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define EXTERN extern "C"
|
||||
extern "C"
|
||||
{
|
||||
#else
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Name: ina219_register
|
||||
*
|
||||
* Description:
|
||||
* Register the ina219 character device as 'devpath'
|
||||
*
|
||||
* Input Parameters:
|
||||
* devpath - The full path to the driver to register. E.g., "/dev/pwrmntr0"
|
||||
* i2c - An instance of the I2C interface to use to communicate with INA219
|
||||
* addr - The I2C address of the INA219. The base I2C address of the INA219
|
||||
* is 0x40. Bits 0-3 can be controlled to get 16 unique addresses from 0x40
|
||||
* through 0x4f.
|
||||
* shuntval - resistor value in microohms
|
||||
* config - a combination of the constants defined earlier in this file
|
||||
*
|
||||
* Returned Value:
|
||||
* Zero (OK) on success; a negated errno value on failure.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int ina219_register(FAR const char *devpath, FAR struct i2c_master_s *i2c,
|
||||
uint8_t addr, int32_t shuntval, uint16_t config);
|
||||
|
||||
#undef EXTERN
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CONFIG_I2C && CONFIG_SENSORS_INA219 */
|
||||
#endif /* __INCLUDE_NUTTX_SENSORS_INA219_H */
|
||||
Reference in New Issue
Block a user