mirror of https://github.com/ArduPilot/ardupilot
254 lines
7.6 KiB
C++
254 lines
7.6 KiB
C++
|
#include "AP_BattMonitor_config.h"
|
||
|
|
||
|
#if AP_BATTERY_INA3221_ENABLED
|
||
|
|
||
|
#include "AP_BattMonitor_INA3221.h"
|
||
|
|
||
|
#include <AP_HAL/utility/sparse-endian.h>
|
||
|
|
||
|
#include <AP_HAL/AP_HAL.h>
|
||
|
#include <AP_HAL/I2CDevice.h>
|
||
|
#include <GCS_MAVLink/GCS.h>
|
||
|
|
||
|
#define INA3221_DEBUGGING 0
|
||
|
|
||
|
#if INA3221_DEBUGGING
|
||
|
#include <stdio.h>
|
||
|
#define debug(fmt, args ...) do {printf("INA3221: %s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
|
||
|
// #define debug(fmt, args ...) do {gcs().send_text(MAV_SEVERITY_INFO, "INA3221: %s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
|
||
|
#else
|
||
|
#define debug(fmt, args ...)
|
||
|
#endif
|
||
|
|
||
|
#ifndef HAL_BATTMON_INA3221_BUS
|
||
|
#define HAL_BATTMON_INA3221_BUS 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef HAL_BATTMON_INA3221_ADDR
|
||
|
#define HAL_BATTMON_INA3221_ADDR 64
|
||
|
#endif
|
||
|
|
||
|
struct AP_BattMonitor_INA3221::AddressDriver AP_BattMonitor_INA3221::address_driver[HAL_BATTMON_INA3221_MAX_DEVICES];
|
||
|
uint8_t AP_BattMonitor_INA3221::address_driver_count;
|
||
|
|
||
|
const AP_Param::GroupInfo AP_BattMonitor_INA3221::var_info[] = {
|
||
|
|
||
|
// Param indexes must be between 56 and 61 to avoid conflict with other battery monitor param tables loaded by pointer
|
||
|
|
||
|
// @Param: I2C_BUS
|
||
|
// @DisplayName: Battery monitor I2C bus number
|
||
|
// @Description: Battery monitor I2C bus number
|
||
|
// @Range: 0 3
|
||
|
// @User: Advanced
|
||
|
// @RebootRequired: True
|
||
|
AP_GROUPINFO("I2C_BUS", 56, AP_BattMonitor_INA3221, i2c_bus, HAL_BATTMON_INA3221_BUS),
|
||
|
|
||
|
// @Param: I2C_ADDR
|
||
|
// @DisplayName: Battery monitor I2C address
|
||
|
// @Description: Battery monitor I2C address. If this is zero then probe list of supported addresses
|
||
|
// @Range: 0 127
|
||
|
// @User: Advanced
|
||
|
// @RebootRequired: True
|
||
|
AP_GROUPINFO("I2C_ADDR", 57, AP_BattMonitor_INA3221, i2c_address, HAL_BATTMON_INA3221_ADDR),
|
||
|
|
||
|
// @Param: CHANNEL
|
||
|
// @DisplayName: INA3221 channel
|
||
|
// @Description: INA3221 channel to return data for
|
||
|
// @Range: 1 3
|
||
|
// @User: Advanced
|
||
|
// @RebootRequired: True
|
||
|
AP_GROUPINFO("CHANNEL", 58, AP_BattMonitor_INA3221, channel, 1),
|
||
|
|
||
|
AP_GROUPEND
|
||
|
};
|
||
|
|
||
|
extern const AP_HAL::HAL &hal;
|
||
|
|
||
|
AP_BattMonitor_INA3221::AP_BattMonitor_INA3221(
|
||
|
AP_BattMonitor &mon,
|
||
|
AP_BattMonitor::BattMonitor_State &mon_state,
|
||
|
AP_BattMonitor_Params ¶ms) :
|
||
|
AP_BattMonitor_Backend(mon, mon_state, params)
|
||
|
{
|
||
|
AP_Param::setup_object_defaults(this, var_info);
|
||
|
_state.var_info = var_info;
|
||
|
}
|
||
|
|
||
|
bool AP_BattMonitor_INA3221::AddressDriver::read_register(uint8_t addr, uint16_t &ret)
|
||
|
{
|
||
|
if (!dev->transfer(&addr, 1, (uint8_t*)&ret, 2)) {
|
||
|
return false;
|
||
|
}
|
||
|
ret = be16toh(ret);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool AP_BattMonitor_INA3221::AddressDriver::write_register(uint8_t addr, uint16_t val)
|
||
|
{
|
||
|
uint8_t buf[3] { addr, uint8_t(val >> 8), uint8_t(val & 0xFF) };
|
||
|
|
||
|
return dev->transfer(buf, sizeof(buf), nullptr, 0);
|
||
|
}
|
||
|
|
||
|
#define REG_CONFIGURATION 0x00
|
||
|
#define REG_MANUFACTURER_ID 0xFE
|
||
|
#define REG_DIE_ID 0xFF
|
||
|
void AP_BattMonitor_INA3221::init()
|
||
|
{
|
||
|
debug("INA3221: probe @0x%02x on bus %u", i2c_address.get(), i2c_bus.get());
|
||
|
|
||
|
// check to see if we already have the underlying driver reading the bus:
|
||
|
for (uint8_t i=0; i<address_driver_count; i++) {
|
||
|
AddressDriver *d = &address_driver[i];
|
||
|
if (!d->dev) {
|
||
|
continue;
|
||
|
}
|
||
|
if (d->address != i2c_address.get()) {
|
||
|
continue;
|
||
|
}
|
||
|
if (d->bus != i2c_bus.get()) {
|
||
|
continue;
|
||
|
}
|
||
|
debug("Reusing INA3221 driver @0x%02x on bus %u", i2c_address.get(), i2c_bus.get());
|
||
|
AddressDriver::StateList *state = NEW_NOTHROW AddressDriver::StateList;
|
||
|
if (state == nullptr) {
|
||
|
return;
|
||
|
}
|
||
|
state->channel = channel.get();
|
||
|
state->next = d->statelist;
|
||
|
state->state = &_state;
|
||
|
d->statelist = state;
|
||
|
d->channel_mask |= (1U << (uint8_t(channel.get())));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (address_driver_count == ARRAY_SIZE(address_driver)) {
|
||
|
debug("INA3221: out of address drivers");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
AddressDriver *d = &address_driver[address_driver_count];
|
||
|
d->dev = std::move(hal.i2c_mgr->get_device(i2c_bus, i2c_address, 100000, true, 20));
|
||
|
if (!d->dev) {
|
||
|
return;
|
||
|
}
|
||
|
d->bus = i2c_bus;
|
||
|
d->address = i2c_address;
|
||
|
|
||
|
WITH_SEMAPHORE(d->dev->get_semaphore());
|
||
|
|
||
|
// check manufacturer_id
|
||
|
uint16_t manufacturer_id;
|
||
|
if (!d->read_register(REG_MANUFACTURER_ID, manufacturer_id)) {
|
||
|
debug("read register (%u (0x%02x)) failed", REG_MANUFACTURER_ID, REG_MANUFACTURER_ID);
|
||
|
return;
|
||
|
}
|
||
|
if (manufacturer_id != 0x5449) { // 8.6.1 p24
|
||
|
debug("Bad manufacturer_id: 0x%02x", manufacturer_id);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
uint16_t die_id;
|
||
|
if (!d->read_register(REG_DIE_ID, die_id)) {
|
||
|
debug("Bad die: 0x%02x", manufacturer_id);
|
||
|
return;
|
||
|
}
|
||
|
if (die_id != 0x3220) { // 8.6.1 p24
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// reset the device:
|
||
|
union {
|
||
|
struct PACKED {
|
||
|
uint16_t mode : 3;
|
||
|
uint16_t shunt_voltage_conversiontime : 3;
|
||
|
uint16_t bus_voltage_conversiontime : 3;
|
||
|
uint16_t averaging_mode : 3;
|
||
|
uint16_t ch1_enable : 1;
|
||
|
uint16_t ch2_enable : 1;
|
||
|
uint16_t ch3_enable : 1;
|
||
|
uint16_t reset : 1;
|
||
|
} bits;
|
||
|
uint16_t word;
|
||
|
} configuration {
|
||
|
0b111, // continuous operation
|
||
|
0b111, // 8ms conversion time for shunt voltage
|
||
|
0b111, // 8ms conversion time for bus voltage
|
||
|
0b111, // 1024 samples / average
|
||
|
0b1, // enable ch1
|
||
|
0b1, // enable ch2
|
||
|
0b1, // enable ch3
|
||
|
0b0 // don't reset...
|
||
|
};
|
||
|
|
||
|
if (!d->write_register(REG_CONFIGURATION, configuration.word)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
AddressDriver::StateList *state = NEW_NOTHROW AddressDriver::StateList;
|
||
|
if (state == nullptr) {
|
||
|
return;
|
||
|
}
|
||
|
state->channel = channel.get();
|
||
|
state->next = d->statelist;
|
||
|
state->state = &_state;
|
||
|
d->statelist = state;
|
||
|
d->channel_mask |= (1U << (uint8_t(channel.get())));
|
||
|
|
||
|
debug("Found INA3221 @0x%02x on bus %u", i2c_address.get(), i2c_bus.get());
|
||
|
|
||
|
address_driver_count++;
|
||
|
|
||
|
d->register_timer();
|
||
|
}
|
||
|
|
||
|
void AP_BattMonitor_INA3221::AddressDriver::register_timer(void)
|
||
|
{
|
||
|
dev->register_periodic_callback(
|
||
|
100000,
|
||
|
FUNCTOR_BIND_MEMBER(&AP_BattMonitor_INA3221::AddressDriver::timer, void));
|
||
|
}
|
||
|
|
||
|
void AP_BattMonitor_INA3221::AddressDriver::timer(void)
|
||
|
{
|
||
|
for (uint8_t i=1; i<=3; i++) {
|
||
|
if ((channel_mask & (1U<<i)) == 0) {
|
||
|
continue;
|
||
|
}
|
||
|
const uint8_t channel_offset = (i-1)*2;
|
||
|
const uint8_t reg_shunt = 1 + channel_offset;
|
||
|
const uint8_t reg_bus = 2 + channel_offset;
|
||
|
|
||
|
uint16_t shunt_voltage;
|
||
|
if (!read_register(reg_shunt, shunt_voltage)) {
|
||
|
return;
|
||
|
}
|
||
|
uint16_t bus_voltage;
|
||
|
if (!read_register(reg_bus, bus_voltage)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// transfer readings to front end:
|
||
|
for (auto *state = statelist; state != nullptr; state = state->next) {
|
||
|
if (state->channel != i) {
|
||
|
continue;
|
||
|
}
|
||
|
WITH_SEMAPHORE(state->sem);
|
||
|
state->state->voltage = bus_voltage/32768.0 * 26;
|
||
|
state->state->current_amps = shunt_voltage * 0.56f;
|
||
|
state->state->last_time_micros = AP_HAL::micros();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void AP_BattMonitor_INA3221::read()
|
||
|
{
|
||
|
static uint32_t last_print;
|
||
|
if (AP_HAL::millis() - last_print > 5000) {
|
||
|
last_print = AP_HAL::millis();
|
||
|
gcs().send_text(MAV_SEVERITY_INFO, "%u: voltage:%f current:%f", (unsigned)_state.last_time_micros, _state.voltage, _state.current_amps);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // AP_BATTERY_INA3221_ENABLED
|