nRF Connect SDK API 3.3.99
Loading...
Searching...
No Matches
battery_def.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7/* This configuration file is included only once from battery level measuring module
8 * and holds information about battery characteristic.
9 */
10
11#include <helpers/nrfx_analog_common.h>
12#include <zephyr/drivers/adc.h>
13
14/* This structure enforces the header file is included only once in the build.
15 * Violating this requirement triggers a multiple definition error at link time.
16 */
18
19#define BATTERY_MEAS_ADC_INPUT NRFX_ANALOG_EXTERNAL_AIN3
20#define BATTERY_MEAS_ADC_GAIN ADC_GAIN_1
21#define BATTERY_MEAS_VOLTAGE_GAIN 1
22
23/* Converting measured battery voltage[mV] to State of Charge[%].
24 * First element corresponds to CONFIG_DESKTOP_BATTERY_MIN_LEVEL.
25 * Each element is CONFIG_DESKTOP_VOLTAGE_TO_SOC_DELTA higher than previous.
26 * Defined separately for every configuration.
27 */
28static const uint8_t battery_voltage_to_soc[] = {
290, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
302, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4,
314, 5, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 11, 12, 13, 13, 14, 15, 16,
3218, 19, 22, 25, 28, 32, 36, 40, 44, 47, 51, 53, 56, 58, 60, 62, 64, 66, 67, 69,
3371, 72, 74, 76, 77, 79, 81, 82, 84, 85, 85, 86, 86, 86, 87, 88, 88, 89, 90, 91,
3491, 92, 93, 94, 95, 96, 97, 98, 99, 100, 100
35};
static const uint8_t battery_voltage_to_soc[]
Definition battery_def.h:28
const struct @46 battery_def_include_once