2020-11-15 15:05:51 +01:00
|
|
|
#include "BatteryController.h"
|
2021-08-03 20:40:27 +02:00
|
|
|
#include "drivers/PinMap.h"
|
2019-12-27 16:05:35 +01:00
|
|
|
#include <hal/nrf_gpio.h>
|
2021-04-04 14:51:22 +02:00
|
|
|
#include <nrfx_saadc.h>
|
2020-09-27 20:02:47 +02:00
|
|
|
#include <algorithm>
|
2019-12-27 16:05:35 +01:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
Battery* Battery::instance = nullptr;
|
2021-04-04 14:51:22 +02:00
|
|
|
|
2021-04-05 16:22:10 +02:00
|
|
|
Battery::Battery() {
|
|
|
|
instance = this;
|
2021-09-13 10:19:07 +02:00
|
|
|
nrf_gpio_cfg_input(PinMap::Charging, static_cast<nrf_gpio_pin_pull_t> GPIO_PIN_CNF_PULL_Disabled);
|
2021-04-04 14:51:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Battery::Update() {
|
2021-08-03 20:32:23 +02:00
|
|
|
isCharging = !nrf_gpio_pin_read(PinMap::Charging);
|
|
|
|
isPowerPresent = !nrf_gpio_pin_read(PinMap::PowerPresent);
|
2021-04-18 19:28:14 +02:00
|
|
|
|
2021-09-03 13:35:38 +02:00
|
|
|
if (isPowerPresent && !isCharging) {
|
|
|
|
isFull = true;
|
|
|
|
} else if (!isPowerPresent) {
|
|
|
|
isFull = false;
|
|
|
|
}
|
|
|
|
|
2021-07-04 20:06:50 +02:00
|
|
|
if (isReading) {
|
2021-04-18 19:28:14 +02:00
|
|
|
return;
|
2021-07-04 20:06:50 +02:00
|
|
|
}
|
2021-04-04 14:51:22 +02:00
|
|
|
// Non blocking read
|
2021-04-16 17:15:38 +02:00
|
|
|
isReading = true;
|
2021-04-18 19:28:14 +02:00
|
|
|
SaadcInit();
|
2021-04-16 17:15:38 +02:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
nrfx_saadc_sample();
|
2021-04-04 14:51:22 +02:00
|
|
|
}
|
|
|
|
|
2021-07-11 16:55:06 +02:00
|
|
|
void Battery::AdcCallbackStatic(nrfx_saadc_evt_t const* event) {
|
2021-04-16 17:15:38 +02:00
|
|
|
instance->SaadcEventHandler(event);
|
|
|
|
}
|
|
|
|
|
2021-04-04 14:51:22 +02:00
|
|
|
void Battery::SaadcInit() {
|
2019-12-27 16:05:35 +01:00
|
|
|
nrfx_saadc_config_t adcConfig = NRFX_SAADC_DEFAULT_CONFIG;
|
2021-07-11 16:55:06 +02:00
|
|
|
APP_ERROR_CHECK(nrfx_saadc_init(&adcConfig, AdcCallbackStatic));
|
2021-04-04 14:51:22 +02:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
nrf_saadc_channel_config_t adcChannelConfig = {.resistor_p = NRF_SAADC_RESISTOR_DISABLED,
|
|
|
|
.resistor_n = NRF_SAADC_RESISTOR_DISABLED,
|
2021-07-27 21:41:48 +02:00
|
|
|
.gain = NRF_SAADC_GAIN1_4,
|
2021-04-18 19:28:14 +02:00
|
|
|
.reference = NRF_SAADC_REFERENCE_INTERNAL,
|
2021-07-12 22:07:05 +02:00
|
|
|
.acq_time = NRF_SAADC_ACQTIME_40US,
|
2021-04-18 19:28:14 +02:00
|
|
|
.mode = NRF_SAADC_MODE_SINGLE_ENDED,
|
|
|
|
.burst = NRF_SAADC_BURST_ENABLED,
|
|
|
|
.pin_p = batteryVoltageAdcInput,
|
|
|
|
.pin_n = NRF_SAADC_INPUT_DISABLED};
|
2021-04-04 14:51:22 +02:00
|
|
|
APP_ERROR_CHECK(nrfx_saadc_channel_init(0, &adcChannelConfig));
|
2021-04-05 16:22:10 +02:00
|
|
|
APP_ERROR_CHECK(nrfx_saadc_buffer_convert(&saadc_value, 1));
|
2019-12-27 16:05:35 +01:00
|
|
|
}
|
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
void Battery::SaadcEventHandler(nrfx_saadc_evt_t const* p_event) {
|
2021-07-02 17:30:32 +02:00
|
|
|
const uint16_t battery_max = 4180; // maximum voltage of battery ( max charging voltage is 4.21 )
|
|
|
|
const uint16_t battery_min = 3200; // minimum voltage of battery before shutdown ( depends on the battery )
|
2019-12-27 16:05:35 +01:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
if (p_event->type == NRFX_SAADC_EVT_DONE) {
|
2019-12-27 16:05:35 +01:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
APP_ERROR_CHECK(nrfx_saadc_buffer_convert(&saadc_value, 1));
|
2021-01-14 21:22:36 +01:00
|
|
|
|
2021-07-02 17:30:32 +02:00
|
|
|
// A hardware voltage divider divides the battery voltage by 2
|
2021-07-27 21:41:48 +02:00
|
|
|
// ADC gain is 1/4
|
|
|
|
// thus adc_voltage = battery_voltage / 2 * gain = battery_voltage / 8
|
2021-08-01 15:19:09 +02:00
|
|
|
// reference_voltage is 600mV
|
2021-07-02 17:30:32 +02:00
|
|
|
// p_event->data.done.p_buffer[0] = (adc_voltage / reference_voltage) * 1024
|
2021-08-01 15:19:09 +02:00
|
|
|
voltage = p_event->data.done.p_buffer[0] * (8 * 600) / 1024;
|
2021-04-04 14:51:22 +02:00
|
|
|
|
2021-09-03 13:35:38 +02:00
|
|
|
if (isFull) {
|
2021-07-13 21:11:46 +02:00
|
|
|
percentRemaining = 100;
|
|
|
|
} else if (voltage < battery_min) {
|
|
|
|
percentRemaining = 0;
|
2021-04-18 19:28:14 +02:00
|
|
|
} else {
|
2021-09-03 13:35:38 +02:00
|
|
|
percentRemaining = std::min((voltage - battery_min) * 100 / (battery_max - battery_min), 99);
|
2021-04-05 16:22:10 +02:00
|
|
|
}
|
2021-04-04 14:51:22 +02:00
|
|
|
|
2021-07-12 22:07:05 +02:00
|
|
|
nrfx_saadc_uninit();
|
|
|
|
isReading = false;
|
2021-08-14 20:18:11 +02:00
|
|
|
|
|
|
|
systemTask->PushMessage(System::Messages::BatteryMeasurementDone);
|
2021-04-04 14:51:22 +02:00
|
|
|
}
|
2021-04-18 19:28:14 +02:00
|
|
|
}
|
2021-08-14 20:18:11 +02:00
|
|
|
|
|
|
|
void Battery::Register(Pinetime::System::SystemTask* systemTask) {
|
|
|
|
this->systemTask = systemTask;
|
|
|
|
}
|