2018-05-30 18:35:11 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2021-03-01 16:38:54 -04:00
|
|
|
#include <AP_ESC_Telem/AP_ESC_Telem.h>
|
2018-05-30 18:35:11 -03:00
|
|
|
#include "AP_BattMonitor_Backend.h"
|
|
|
|
|
2021-03-01 16:38:54 -04:00
|
|
|
#if HAL_WITH_ESC_TELEM
|
|
|
|
|
|
|
|
class AP_BattMonitor_ESC :public AP_BattMonitor_Backend
|
2018-05-30 18:35:11 -03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor. This incorporates initialisation as well.
|
2021-03-01 16:38:54 -04:00
|
|
|
AP_BattMonitor_ESC(AP_BattMonitor &mon, AP_BattMonitor::BattMonitor_State &mon_state, AP_BattMonitor_Params ¶ms):
|
2018-05-30 18:35:11 -03:00
|
|
|
AP_BattMonitor_Backend(mon, mon_state, params)
|
|
|
|
{};
|
|
|
|
|
2021-03-01 16:38:54 -04:00
|
|
|
virtual ~AP_BattMonitor_ESC(void) {};
|
2018-05-30 18:35:11 -03:00
|
|
|
|
|
|
|
// initialise
|
|
|
|
void init() override;
|
|
|
|
|
|
|
|
// read the latest battery voltage
|
|
|
|
void read() override;
|
|
|
|
|
2021-03-01 16:38:54 -04:00
|
|
|
// ESC_Telem provides current info
|
2018-06-13 20:10:14 -03:00
|
|
|
bool has_current() const override { return have_current; };
|
|
|
|
|
2021-03-01 16:38:54 -04:00
|
|
|
// ESC_Telem provides temperature info
|
|
|
|
bool has_temperature() const override { return have_temperature; };
|
|
|
|
|
2021-06-04 14:39:46 -03:00
|
|
|
// reset remaining percentage to given value
|
|
|
|
virtual bool reset_remaining(float percentage) override;
|
|
|
|
|
2018-06-13 20:10:14 -03:00
|
|
|
private:
|
|
|
|
bool have_current;
|
2021-03-01 16:38:54 -04:00
|
|
|
bool have_temperature;
|
2021-06-04 14:39:46 -03:00
|
|
|
float delta_mah;
|
2018-05-30 18:35:11 -03:00
|
|
|
};
|
2021-03-01 16:38:54 -04:00
|
|
|
|
|
|
|
#endif
|