2016-02-17 21:25:15 -04:00
|
|
|
#pragma once
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2015-08-11 03:28:42 -03:00
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
2017-04-08 00:27:31 -03:00
|
|
|
#include <GCS_MAVLink/GCS_MAVLink.h>
|
2017-10-27 02:36:49 -03:00
|
|
|
#include "AP_BattMonitor_Params.h"
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
// maximum number of battery monitors
|
2018-09-12 20:01:04 -03:00
|
|
|
#define AP_BATT_MONITOR_MAX_INSTANCES 9
|
2014-12-04 01:27:56 -04:00
|
|
|
|
|
|
|
// first monitor is always the primary monitor
|
|
|
|
#define AP_BATT_PRIMARY_INSTANCE 0
|
|
|
|
|
2017-04-24 03:16:49 -03:00
|
|
|
#define AP_BATT_SERIAL_NUMBER_DEFAULT -1
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2017-04-08 05:20:08 -03:00
|
|
|
#define AP_BATT_MONITOR_TIMEOUT 5000
|
|
|
|
|
2017-05-23 04:12:58 -03:00
|
|
|
#define AP_BATT_MONITOR_RES_EST_TC_1 0.5f
|
|
|
|
#define AP_BATT_MONITOR_RES_EST_TC_2 0.1f
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
// declare backend class
|
|
|
|
class AP_BattMonitor_Backend;
|
|
|
|
class AP_BattMonitor_Analog;
|
|
|
|
class AP_BattMonitor_SMBus;
|
2017-02-08 20:28:14 -04:00
|
|
|
class AP_BattMonitor_SMBus_Solo;
|
2017-02-08 20:28:57 -04:00
|
|
|
class AP_BattMonitor_SMBus_Maxell;
|
2018-02-16 18:32:25 -04:00
|
|
|
class AP_BattMonitor_UAVCAN;
|
2014-12-04 01:27:56 -04:00
|
|
|
|
2013-09-28 10:35:27 -03:00
|
|
|
class AP_BattMonitor
|
|
|
|
{
|
2014-12-04 01:27:56 -04:00
|
|
|
friend class AP_BattMonitor_Backend;
|
|
|
|
friend class AP_BattMonitor_Analog;
|
|
|
|
friend class AP_BattMonitor_SMBus;
|
2017-02-08 20:28:14 -04:00
|
|
|
friend class AP_BattMonitor_SMBus_Solo;
|
2017-02-08 20:28:57 -04:00
|
|
|
friend class AP_BattMonitor_SMBus_Maxell;
|
2018-02-16 18:32:25 -04:00
|
|
|
friend class AP_BattMonitor_UAVCAN;
|
2018-11-19 04:59:58 -04:00
|
|
|
friend class AP_BattMonitor_Sum;
|
2014-12-04 01:27:56 -04:00
|
|
|
|
2013-09-28 10:35:27 -03:00
|
|
|
public:
|
2017-11-09 18:33:44 -04:00
|
|
|
|
|
|
|
// battery failsafes must be defined in levels of severity so that vehicles wont fall backwards
|
|
|
|
enum BatteryFailsafe {
|
|
|
|
BatteryFailsafe_None = 0,
|
|
|
|
BatteryFailsafe_Low,
|
|
|
|
BatteryFailsafe_Critical
|
|
|
|
};
|
|
|
|
|
|
|
|
FUNCTOR_TYPEDEF(battery_failsafe_handler_fn_t, void, const char *, const int8_t);
|
|
|
|
|
|
|
|
AP_BattMonitor(uint32_t log_battery_bit, battery_failsafe_handler_fn_t battery_failsafe_handler_fn, const int8_t *failsafe_priorities);
|
2017-08-28 21:41:49 -03:00
|
|
|
|
|
|
|
/* Do not allow copies */
|
|
|
|
AP_BattMonitor(const AP_BattMonitor &other) = delete;
|
|
|
|
AP_BattMonitor &operator=(const AP_BattMonitor&) = delete;
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2018-01-16 15:09:28 -04:00
|
|
|
static AP_BattMonitor &battery() {
|
|
|
|
return *_singleton;
|
|
|
|
}
|
|
|
|
|
2017-04-08 00:27:31 -03:00
|
|
|
struct cells {
|
|
|
|
uint16_t cells[MAVLINK_MSG_BATTERY_STATUS_FIELD_VOLTAGES_LEN];
|
|
|
|
};
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
// The BattMonitor_State structure is filled in by the backend driver
|
|
|
|
struct BattMonitor_State {
|
2017-11-09 18:33:44 -04:00
|
|
|
cells cell_voltages; // battery cell voltages in millivolts, 10 cells matches the MAVLink spec
|
|
|
|
float voltage; // voltage in volts
|
|
|
|
float current_amps; // current in amperes
|
|
|
|
float consumed_mah; // total current draw in milliamp hours since start-up
|
|
|
|
float consumed_wh; // total energy consumed in Wh since start-up
|
2018-02-15 11:51:08 -04:00
|
|
|
uint32_t last_time_micros; // time when voltage and current was last read in microseconds
|
|
|
|
uint32_t low_voltage_start_ms; // time when voltage dropped below the minimum in milliseconds
|
2017-11-09 18:33:44 -04:00
|
|
|
uint32_t critical_voltage_start_ms; // critical voltage failsafe start timer in milliseconds
|
2018-02-15 11:51:08 -04:00
|
|
|
float temperature; // battery temperature in degrees Celsius
|
2017-11-09 18:33:44 -04:00
|
|
|
uint32_t temperature_time; // timestamp of the last received temperature message
|
2018-02-15 11:51:08 -04:00
|
|
|
float voltage_resting_estimate; // voltage with sag removed based on current and resistance estimate in Volt
|
2017-11-09 18:33:44 -04:00
|
|
|
float resistance; // resistance, in Ohms, calculated by comparing resting voltage vs in flight voltage
|
|
|
|
BatteryFailsafe failsafe; // stage failsafe the battery is in
|
|
|
|
bool healthy; // battery monitor is communicating correctly
|
2014-12-04 01:27:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Return the number of battery monitor instances
|
|
|
|
uint8_t num_instances(void) const { return _num_instances; }
|
|
|
|
|
|
|
|
// detect and initialise any available battery monitors
|
2013-09-28 10:35:27 -03:00
|
|
|
void init();
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
/// Read the battery voltage and current for all batteries. Should be called at 10hz
|
2013-09-28 10:35:27 -03:00
|
|
|
void read();
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
// healthy - returns true if monitor is functioning
|
|
|
|
bool healthy(uint8_t instance) const;
|
|
|
|
bool healthy() const { return healthy(AP_BATT_PRIMARY_INSTANCE); }
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2016-08-25 09:53:33 -03:00
|
|
|
/// has_consumed_energy - returns true if battery monitor instance provides consumed energy info
|
|
|
|
bool has_consumed_energy(uint8_t instance) const;
|
|
|
|
bool has_consumed_energy() const { return has_consumed_energy(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
/// has_current - returns true if battery monitor instance provides current info
|
|
|
|
bool has_current(uint8_t instance) const;
|
|
|
|
bool has_current() const { return has_current(AP_BATT_PRIMARY_INSTANCE); }
|
2013-10-22 19:40:09 -03:00
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
/// voltage - returns battery voltage in millivolts
|
|
|
|
float voltage(uint8_t instance) const;
|
|
|
|
float voltage() const { return voltage(AP_BATT_PRIMARY_INSTANCE); }
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2017-05-23 04:12:58 -03:00
|
|
|
/// get voltage with sag removed (based on battery current draw and resistance)
|
2017-05-25 02:09:20 -03:00
|
|
|
/// this will always be greater than or equal to the raw voltage
|
2017-05-23 04:12:58 -03:00
|
|
|
float voltage_resting_estimate(uint8_t instance) const;
|
|
|
|
float voltage_resting_estimate() const { return voltage_resting_estimate(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
/// current_amps - returns the instantaneous current draw in amperes
|
|
|
|
float current_amps(uint8_t instance) const;
|
|
|
|
float current_amps() const { return current_amps(AP_BATT_PRIMARY_INSTANCE); }
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2018-02-15 12:10:36 -04:00
|
|
|
/// consumed_mah - returns total current drawn since start-up in milliampere.hours
|
|
|
|
float consumed_mah(uint8_t instance) const;
|
|
|
|
float consumed_mah() const { return consumed_mah(AP_BATT_PRIMARY_INSTANCE); }
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2018-02-15 12:10:36 -04:00
|
|
|
/// consumed_wh - returns total energy drawn since start-up in watt.hours
|
2016-08-25 09:53:33 -03:00
|
|
|
float consumed_wh(uint8_t instance) const;
|
|
|
|
float consumed_wh() const { return consumed_wh(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
|
2013-09-28 10:35:27 -03:00
|
|
|
/// capacity_remaining_pct - returns the % battery capacity remaining (0 ~ 100)
|
2014-12-04 01:27:56 -04:00
|
|
|
virtual uint8_t capacity_remaining_pct(uint8_t instance) const;
|
|
|
|
uint8_t capacity_remaining_pct() const { return capacity_remaining_pct(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
|
2016-05-03 11:40:00 -03:00
|
|
|
/// pack_capacity_mah - returns the capacity of the battery pack in mAh when the pack is full
|
|
|
|
int32_t pack_capacity_mah(uint8_t instance) const;
|
|
|
|
int32_t pack_capacity_mah() const { return pack_capacity_mah(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
|
2017-11-09 18:33:44 -04:00
|
|
|
/// returns the failsafe state of the battery
|
|
|
|
BatteryFailsafe check_failsafe(const uint8_t instance);
|
|
|
|
void check_failsafes(void); // checks all batteries failsafes
|
|
|
|
|
|
|
|
/// returns true if a battery failsafe has ever been triggered
|
|
|
|
bool has_failsafed(void) const { return _has_triggered_failsafe; };
|
|
|
|
|
|
|
|
/// returns the highest failsafe action that has been triggered
|
|
|
|
int8_t get_highest_failsafe_priority(void) const { return _highest_failsafe_priority; };
|
2013-09-28 10:35:27 -03:00
|
|
|
|
2015-01-16 03:11:55 -04:00
|
|
|
/// get_type - returns battery monitor type
|
2017-10-27 02:36:49 -03:00
|
|
|
enum AP_BattMonitor_Params::BattMonitor_Type get_type() { return get_type(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
enum AP_BattMonitor_Params::BattMonitor_Type get_type(uint8_t instance) { return _params[instance].type(); }
|
2015-01-16 03:11:55 -04:00
|
|
|
|
|
|
|
/// set_monitoring - sets the monitor type (used for example sketch only)
|
2017-10-27 02:36:49 -03:00
|
|
|
void set_monitoring(uint8_t instance, uint8_t mon) { _params[instance]._type.set(mon); }
|
2013-09-30 11:14:09 -03:00
|
|
|
|
2016-01-08 13:16:29 -04:00
|
|
|
/// true when (voltage * current) > watt_max
|
|
|
|
bool overpower_detected() const;
|
|
|
|
bool overpower_detected(uint8_t instance) const;
|
|
|
|
|
2017-04-08 00:27:31 -03:00
|
|
|
// cell voltages
|
2017-05-31 00:31:18 -03:00
|
|
|
bool has_cell_voltages() { return has_cell_voltages(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
bool has_cell_voltages(const uint8_t instance) const;
|
|
|
|
const cells & get_cell_voltages() const { return get_cell_voltages(AP_BATT_PRIMARY_INSTANCE); }
|
2017-04-08 00:27:31 -03:00
|
|
|
const cells & get_cell_voltages(const uint8_t instance) const;
|
|
|
|
|
2017-04-08 05:20:08 -03:00
|
|
|
// temperature
|
|
|
|
bool get_temperature(float &temperature) const { return get_temperature(temperature, AP_BATT_PRIMARY_INSTANCE); };
|
|
|
|
bool get_temperature(float &temperature, const uint8_t instance) const;
|
|
|
|
|
2017-05-23 04:12:58 -03:00
|
|
|
// get battery resistance estimate in ohms
|
|
|
|
float get_resistance() const { return get_resistance(AP_BATT_PRIMARY_INSTANCE); }
|
|
|
|
float get_resistance(uint8_t instance) const { return state[instance].resistance; }
|
|
|
|
|
2018-09-12 19:26:39 -03:00
|
|
|
// returns false if we fail arming checks, in which case the buffer will be populated with a failure message
|
|
|
|
bool arming_checks(size_t buflen, char *buffer) const;
|
|
|
|
|
2013-09-28 10:35:27 -03:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/// parameters
|
2017-10-27 02:36:49 -03:00
|
|
|
AP_BattMonitor_Params _params[AP_BATT_MONITOR_MAX_INSTANCES];
|
2017-04-27 20:24:20 -03:00
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
private:
|
2018-01-16 15:09:28 -04:00
|
|
|
static AP_BattMonitor *_singleton;
|
|
|
|
|
2014-12-04 01:27:56 -04:00
|
|
|
BattMonitor_State state[AP_BATT_MONITOR_MAX_INSTANCES];
|
|
|
|
AP_BattMonitor_Backend *drivers[AP_BATT_MONITOR_MAX_INSTANCES];
|
2018-01-16 15:09:28 -04:00
|
|
|
uint32_t _log_battery_bit;
|
2014-12-04 01:27:56 -04:00
|
|
|
uint8_t _num_instances; /// number of monitors
|
2017-10-27 02:36:49 -03:00
|
|
|
|
|
|
|
void convert_params(void);
|
|
|
|
|
2017-11-09 18:33:44 -04:00
|
|
|
battery_failsafe_handler_fn_t _battery_failsafe_handler_fn;
|
|
|
|
const int8_t *_failsafe_priorities; // array of failsafe priorities, sorted highest to lowest priority, -1 indicates no more entries
|
|
|
|
|
|
|
|
int8_t _highest_failsafe_priority; // highest selected failsafe action level (used to restrict what actions we move into)
|
|
|
|
bool _has_triggered_failsafe; // true after a battery failsafe has been triggered for the first time
|
|
|
|
|
2013-09-28 10:35:27 -03:00
|
|
|
};
|
2018-01-16 15:09:28 -04:00
|
|
|
|
|
|
|
namespace AP {
|
|
|
|
AP_BattMonitor &battery();
|
|
|
|
};
|