mirror of https://github.com/ArduPilot/ardupilot
30 lines
919 B
C++
30 lines
919 B
C++
#pragma once
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
#include <AP_Param/AP_Param.h>
|
|
#include <AP_Math/AP_Math.h>
|
|
#include "AP_BattMonitor_Backend.h"
|
|
|
|
#define AP_BATTMONITOR_SMBUS_BUS_INTERNAL 0
|
|
#define AP_BATTMONITOR_SMBUS_BUS_EXTERNAL 1
|
|
#define AP_BATTMONITOR_SMBUS_I2C_ADDR 0x0B
|
|
#define AP_BATTMONITOR_SMBUS_TIMEOUT_MICROS 5000000 // sensor becomes unhealthy if no successful readings for 5 seconds
|
|
|
|
class AP_BattMonitor_SMBus : public AP_BattMonitor_Backend
|
|
{
|
|
public:
|
|
|
|
/// Constructor
|
|
AP_BattMonitor_SMBus(AP_BattMonitor &mon, uint8_t instance, AP_BattMonitor::BattMonitor_State &mon_state) :
|
|
AP_BattMonitor_Backend(mon, instance, mon_state)
|
|
{}
|
|
|
|
// virtual destructor to reduce compiler warnings
|
|
virtual ~AP_BattMonitor_SMBus() {}
|
|
|
|
};
|
|
|
|
// include specific implementations
|
|
#include "AP_BattMonitor_SMBus_Solo.h"
|
|
#include "AP_BattMonitor_SMBus_Maxell.h"
|