![]() |
The foxBMS secondary mcu API documentation
|
Header for the driver for the analog to digital converter. More...
#include "adc_cfg.h"
Go to the source code of this file.
Functions | |
void | ADC_Init (ADC_HandleTypeDef *AdcHandle) |
initializes the different ADC devices by enabling their corresponding clocks. It is called during startup. More... | |
void | ADC_Convert (ADC_HandleTypeDef *AdcHandle) |
void | ADC_Ctrl (void) |
determines which kind of measurements are made by the ADCs and stores result in database. More... | |
void | HAL_ADC_ConvCpltCallback (ADC_HandleTypeDef *AdcHandle) |
callback function to the ADC conversion. More... | |
float | ADC_GetVBAT_mV (void) |
get coin cell battery voltage More... | |
float | ADC_GetMCUTemp_C (void) |
get MCU temperature More... | |
uint16_t | ADC_GetValue (uint32_t value) |
get voltage in mV More... | |
Header for the driver for the analog to digital converter.
BSD 3-Clause License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:
″This product uses parts of foxBMS®″
″This product includes parts of foxBMS®″
″This product is derived from foxBMS®″
This adc module provides support for analog/digital conversion. It must be initialized during startup.
void ADC_Convert | ( | ADC_HandleTypeDef * | AdcHandle | ) |
starts the ADC conversion.
AdcHandle | pointer to ADC hardware handle |
void ADC_Ctrl | ( | void | ) |
determines which kind of measurements are made by the ADCs and stores result in database.
It alternates between measurement of the voltage of the backup battery and the voltage of the internal temperature sensor. It starts the conversion with ADC_Convert(). If the conversion is completed, the result is stored in the database.
float ADC_GetMCUTemp_C | ( | void | ) |
get MCU temperature
uint16_t ADC_GetValue | ( | uint32_t | value | ) |
get voltage in mV
float ADC_GetVBAT_mV | ( | void | ) |
get coin cell battery voltage
void ADC_Init | ( | ADC_HandleTypeDef * | AdcHandle | ) |
initializes the different ADC devices by enabling their corresponding clocks. It is called during startup.
AdcHandle | pointer to ADC hardware handle |
void HAL_ADC_ConvCpltCallback | ( | ADC_HandleTypeDef * | AdcHandle | ) |
callback function to the ADC conversion.
It is called automatically when an ADC conversion is complete. Before getting the converted value, it stops the ADC with HAL_ADC_Stop_IT(). Then it gets the converted raw value with HAL_ADC_GetValue(). The raw value is then scaled.
AdcHandle | pointer to ADC hardware handle |