2021-10-10 05:56:41 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_HAL/I2CDevice.h>
|
|
|
|
#include "AP_BattMonitor_Backend.h"
|
|
|
|
#include <utility>
|
|
|
|
|
2023-03-06 22:02:49 -04:00
|
|
|
#if AP_BATTERY_LTC2946_ENABLED
|
2021-10-10 05:56:41 -03:00
|
|
|
|
|
|
|
class AP_BattMonitor_LTC2946 : public AP_BattMonitor_Backend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// inherit constructor
|
|
|
|
using AP_BattMonitor_Backend::AP_BattMonitor_Backend;
|
|
|
|
|
|
|
|
bool has_cell_voltages() const override { return false; }
|
|
|
|
bool has_temperature() const override { return false; }
|
|
|
|
bool has_current() const override { return true; }
|
|
|
|
bool get_cycle_count(uint16_t &cycles) const override { return false; }
|
|
|
|
|
|
|
|
virtual void init(void) override;
|
|
|
|
virtual void read() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev;
|
|
|
|
|
|
|
|
bool read_word(const uint8_t reg, uint16_t& data) const;
|
|
|
|
void timer(void);
|
|
|
|
|
|
|
|
struct {
|
|
|
|
uint16_t count;
|
|
|
|
float volt_sum;
|
|
|
|
float current_sum;
|
|
|
|
HAL_Semaphore sem;
|
|
|
|
} accumulate;
|
|
|
|
float current_LSB;
|
|
|
|
float voltage_LSB;
|
|
|
|
};
|
|
|
|
|
2023-03-06 22:02:49 -04:00
|
|
|
#endif // AP_BATTERY_LTC2946_ENABLED
|