2024-04-29 11:38:27 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 HTotoo.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* 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 2, 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; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BATTERY_H__
|
|
|
|
#define __BATTERY_H__
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include "ch.h"
|
|
|
|
|
|
|
|
namespace battery {
|
|
|
|
|
2024-08-28 05:32:24 -04:00
|
|
|
#define BATTERY_MIN_VOLTAGE 3000.0
|
|
|
|
#define BATTERY_MAX_VOLTAGE 4170.0
|
|
|
|
#define BATTERY_DESIGN_CAP 2500
|
|
|
|
|
2024-04-29 11:38:27 -04:00
|
|
|
class BatteryManagement {
|
|
|
|
public:
|
|
|
|
enum BatteryModules {
|
|
|
|
BATT_NONE = 0,
|
|
|
|
BATT_ADS1110 = 1,
|
2024-07-15 16:17:55 -04:00
|
|
|
BATT_MAX17055 = 2,
|
2024-04-29 11:38:27 -04:00
|
|
|
BATT_EMULATOR = 254
|
|
|
|
};
|
2024-07-17 05:18:57 -04:00
|
|
|
enum BatteryValidMask {
|
|
|
|
BATT_VALID_NONE = 0,
|
|
|
|
BATT_VALID_VOLTAGE = 1,
|
|
|
|
BATT_VALID_CURRENT = 2,
|
2024-08-28 05:32:24 -04:00
|
|
|
BATT_VALID_PERCENT = 4,
|
2024-09-20 05:59:17 -04:00
|
|
|
BATT_VALID_CYCLES = 8,
|
|
|
|
BATT_VALID_TTEF = 16,
|
2024-07-17 05:18:57 -04:00
|
|
|
};
|
2024-08-28 05:32:24 -04:00
|
|
|
static void init(bool override = false);
|
2024-07-17 05:18:57 -04:00
|
|
|
static void detect();
|
2024-04-29 11:38:27 -04:00
|
|
|
static bool isDetected() { return detected_ != BATT_NONE; }
|
2024-07-15 16:17:55 -04:00
|
|
|
static BatteryModules detectedModule() { return detected_; }
|
2024-07-17 05:18:57 -04:00
|
|
|
static void getBatteryInfo(uint8_t& valid_mask, uint8_t& batteryPercentage, uint16_t& voltage, int32_t& current);
|
2024-04-29 11:38:27 -04:00
|
|
|
static uint16_t getVoltage();
|
|
|
|
static uint8_t getPercent();
|
2024-07-15 16:17:55 -04:00
|
|
|
static uint16_t read_register(const uint8_t reg);
|
|
|
|
static bool write_register(const uint8_t reg, const uint16_t value);
|
2024-08-28 05:32:24 -04:00
|
|
|
static void set_calc_override(bool override);
|
|
|
|
static uint8_t calc_percent_voltage(uint16_t); // calculates battery percentage from the voltage
|
2024-09-20 05:59:17 -04:00
|
|
|
static bool reset_learned(); // resets the ic's learned parameters
|
|
|
|
static uint16_t get_cycles();
|
|
|
|
static float get_tte();
|
|
|
|
static float get_ttf();
|
2024-04-29 11:38:27 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void create_thread();
|
|
|
|
static msg_t timer_fn(void* arg);
|
|
|
|
static Thread* thread;
|
|
|
|
static BatteryModules detected_; // if there is any batt management system
|
2024-08-28 05:32:24 -04:00
|
|
|
static bool calcOverride; // if set to true, it'll override the battery percent calculation based on current voltage.
|
2024-04-29 11:38:27 -04:00
|
|
|
};
|
|
|
|
}; // namespace battery
|
|
|
|
#endif
|