2019-12-27 10:05:35 -05:00
|
|
|
#pragma once
|
2020-11-15 09:05:51 -05:00
|
|
|
#include <cstdint>
|
2019-12-27 10:05:35 -05:00
|
|
|
#include <drivers/include/nrfx_saadc.h>
|
2021-01-14 15:22:36 -05:00
|
|
|
#include <array>
|
|
|
|
#include <numeric>
|
2021-08-02 15:37:48 -04:00
|
|
|
#include <drivers/PinMap.h>
|
2019-12-27 10:05:35 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
2021-01-14 16:11:17 -05:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
/** A simple circular buffer that can be used to average
|
|
|
|
out the sensor values. The total capacity of the CircBuffer
|
2021-04-08 11:15:57 -04:00
|
|
|
is given as the template parameter N.
|
2021-04-18 13:28:14 -04:00
|
|
|
*/
|
|
|
|
template <int N> class CircBuffer {
|
2021-04-24 05:00:45 -04:00
|
|
|
public:
|
2021-04-18 13:28:14 -04:00
|
|
|
CircBuffer() : arr {}, sz {}, cap {N}, head {} {
|
|
|
|
}
|
2021-04-08 11:15:57 -04:00
|
|
|
/**
|
2021-04-18 13:28:14 -04:00
|
|
|
insert member function overwrites the next data to the current
|
2021-04-08 11:15:57 -04:00
|
|
|
HEAD and moves the HEAD to the newly inserted value.
|
2021-04-18 13:28:14 -04:00
|
|
|
*/
|
2021-07-11 10:55:06 -04:00
|
|
|
void Insert(const uint8_t num) {
|
2021-04-08 11:15:57 -04:00
|
|
|
head %= cap;
|
|
|
|
arr[head++] = num;
|
|
|
|
if (sz != cap) {
|
|
|
|
sz++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-11 10:55:06 -04:00
|
|
|
uint8_t GetAverage() const {
|
2021-04-08 11:15:57 -04:00
|
|
|
int sum = std::accumulate(arr.begin(), arr.end(), 0);
|
2021-07-11 10:55:06 -04:00
|
|
|
return static_cast<uint8_t>(sum / sz);
|
2021-04-08 11:15:57 -04:00
|
|
|
}
|
|
|
|
|
2021-04-24 05:00:45 -04:00
|
|
|
private:
|
2021-07-11 10:55:06 -04:00
|
|
|
std::array<uint8_t, N> arr; /**< internal array used to store the values*/
|
2021-04-18 13:28:14 -04:00
|
|
|
uint8_t sz; /**< The current size of the array.*/
|
|
|
|
uint8_t cap; /**< Total capacity of the CircBuffer.*/
|
|
|
|
uint8_t head; /**< The current head of the CircBuffer*/
|
2021-04-08 11:15:57 -04:00
|
|
|
};
|
|
|
|
|
2019-12-27 10:05:35 -05:00
|
|
|
class Battery {
|
2021-04-24 05:00:45 -04:00
|
|
|
public:
|
2021-04-18 13:28:14 -04:00
|
|
|
Battery();
|
|
|
|
|
|
|
|
void Init();
|
|
|
|
void Update();
|
2021-04-04 08:51:22 -04:00
|
|
|
|
2021-07-11 10:55:06 -04:00
|
|
|
uint8_t PercentRemaining() const {
|
|
|
|
auto avg = percentRemainingBuffer.GetAverage();
|
|
|
|
avg = std::min(avg, static_cast<uint8_t>(100));
|
|
|
|
avg = std::max(avg, static_cast<uint8_t>(0));
|
|
|
|
return avg;
|
2021-04-18 13:28:14 -04:00
|
|
|
}
|
2021-04-05 10:22:10 -04:00
|
|
|
|
2021-07-02 11:30:32 -04:00
|
|
|
uint16_t Voltage() const {
|
2021-04-18 13:28:14 -04:00
|
|
|
return voltage;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsCharging() const {
|
|
|
|
return isCharging;
|
|
|
|
}
|
2021-07-11 10:55:06 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
bool IsPowerPresent() const {
|
|
|
|
return isPowerPresent;
|
|
|
|
}
|
2021-04-08 11:15:57 -04:00
|
|
|
|
2021-04-24 05:00:45 -04:00
|
|
|
private:
|
2021-04-18 13:28:14 -04:00
|
|
|
static Battery* instance;
|
|
|
|
nrf_saadc_value_t saadc_value;
|
2021-04-04 08:51:22 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
static constexpr uint8_t percentRemainingSamples = 5;
|
|
|
|
CircBuffer<percentRemainingSamples> percentRemainingBuffer {};
|
2019-12-27 10:05:35 -05:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
static constexpr nrf_saadc_input_t batteryVoltageAdcInput = NRF_SAADC_INPUT_AIN7;
|
2021-07-02 11:30:32 -04:00
|
|
|
uint16_t voltage = 0;
|
2021-04-18 13:28:14 -04:00
|
|
|
int percentRemaining = -1;
|
2021-04-05 10:22:10 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
bool isCharging = false;
|
|
|
|
bool isPowerPresent = false;
|
2021-04-04 08:51:22 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
void SaadcInit();
|
2021-04-04 08:51:22 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
void SaadcEventHandler(nrfx_saadc_evt_t const* p_event);
|
2021-07-11 10:55:06 -04:00
|
|
|
static void AdcCallbackStatic(nrfx_saadc_evt_t const* event);
|
2021-04-16 11:15:38 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
bool isReading = false;
|
|
|
|
uint8_t samples = 0;
|
2019-12-27 10:05:35 -05:00
|
|
|
};
|
|
|
|
}
|
2021-07-02 11:30:32 -04:00
|
|
|
}
|