foxBMS - Unit Tests
1.3.0
The foxBMS Unit Tests API Documentation
|
Headers for the driver for the LTC monitoring chip. More...
#include "ltc_defs.h"
Go to the source code of this file.
Macros | |
#define | TEST_LTC_DECLARE_GET(VARIABLE) extern void TEST_LTC_Get_##VARIABLE(uint8_t data[4]) |
Variables | |
LTC_STATE_s | ltc_stateBase |
Headers for the driver for the LTC monitoring chip.
SPDX-License-Identifier: BSD-3-Clause
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:
Definition in file ltc.h.
#define TEST_LTC_DECLARE_GET | ( | VARIABLE | ) | extern void TEST_LTC_Get_##VARIABLE(uint8_t data[4]) |
LTC_STATEMACH_e LTC_GetState | ( | LTC_STATE_s * | ltc_state | ) |
gets the current state.
This function is used in the functioning of the LTC state machine.
ltc_state | state of the ltc state machine |
Definition at line 561 of file ltc_6806.c.
LTC_REQUEST_s LTC_GetStateRequest | ( | LTC_STATE_s * | ltc_state | ) |
gets the current state request.
This function is used in the functioning of the LTC state machine.
ltc_state | state of the ltc state machine |
Definition at line 541 of file ltc_6806.c.
void LTC_InitializeMonitoringPin | ( | void | ) |
Sets the transceiver pins to enable LTC6820 IC.
Definition at line 1748 of file ltc_6806.c.
bool LTC_IsFirstMeasurementCycleFinished | ( | LTC_STATE_s * | ltc_state | ) |
gets the measurement initialization status.
ltc_state | state of the ltc state machine |
Definition at line 1729 of file ltc_6806.c.
void LTC_SaveAllGpioMeasurement | ( | LTC_STATE_s * | ltc_state | ) |
stores the measured GPIOs in the database.
This function loops through the data of all modules in the LTC daisy-chain that are stored in the ltc_allgpiovoltage buffer and writes them in the database. At each write iteration, the variable named "state" and related to voltages in the database is incremented.
ltc_state | state of the ltc state machine |
Definition at line 500 of file ltc_6806.c.
void LTC_SaveTemperatures | ( | LTC_STATE_s * | ltc_state, |
uint8_t | stringNumber | ||
) |
stores the measured temperatures and the measured multiplexer feedbacks in the database.
This function loops through the temperature and multiplexer feedback data of all modules in the LTC daisy-chain that are stored in the LTC_MultiplexerVoltages buffer and writes them in the database. At each write iteration, the variables named "state" and related to temperatures and multiplexer feedbacks in the database are incremented.
ltc_state | state of the ltc state machine |
stringNumber | string addressed |
Definition at line 452 of file ltc_6806.c.
void LTC_SaveVoltages | ( | LTC_STATE_s * | ltc_state, |
uint8_t | stringNumber | ||
) |
stores the measured voltages in the database.
This function loops through the data of all modules in the LTC daisy-chain that are stored in the LTC_CellVoltages buffer and writes them in the database. At each write iteration, the variable named "state" and related to voltages in the database is incremented.
ltc_state | state of the ltc state machine |
stringNumber | string addressed |
Definition at line 392 of file ltc_6806.c.
LTC_RETURN_TYPE_e LTC_SetStateRequest | ( | LTC_STATE_s * | ltc_state, |
LTC_REQUEST_s | statereq | ||
) |
sets the current state request of the state variable ltc_state.
This function is used to make a state request to the state machine,e.g, start voltage measurement, read result of voltage measurement, re-initialization It calls LTC_CheckStateRequest() to check if the request is valid. The state request is rejected if is not valid. The result of the check is returned immediately, so that the requester can act in case it made a non-valid state request.
ltc_state | state of the ltc state machine |
statereq | state request to set |
Definition at line 599 of file ltc_6806.c.
void LTC_Trigger | ( | LTC_STATE_s * | ltc_state | ) |
trigger function for the LTC driver state machine.
This function contains the sequence of events in the LTC state machine. It must be called time-triggered, every 1ms.
Definition at line 614 of file ltc_6806.c.
uint8_t TEST_LTC_CheckReEntrance | ( | ) |
TEST_LTC_DECLARE_GET | ( | ltc_BC_cmdADOW_PDOWN_100ms_fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_BC_cmdADOW_PDOWN_filtered_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_BC_cmdADOW_PDOWN_normal_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_BC_cmdADOW_PUP_100ms_fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_BC_cmdADOW_PUP_filtered_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_BC_cmdADOW_PUP_normal_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_fast_ALLGPIOS | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_fast_GPIO1 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_fast_GPIO2 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_fast_GPIO3 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_filtered_ALLGPIOS | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_filtered_GPIO1 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_filtered_GPIO2 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_filtered_GPIO3 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_normal_ALLGPIOS | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_normal_GPIO1 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_normal_GPIO2 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADAX_normal_GPIO3 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_fast_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_fast_DCP0_twocells | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_fast_DCP1 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_filtered_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_filtered_DCP1 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_normal_DCP0 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_normal_DCP1 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdADCV_normal_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDAUXA | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDAUXB | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDAUXC | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDAUXD | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCFG | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCOMM | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVA | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVA_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVB | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVB_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVC | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVC_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVD | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVD_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVE | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVE_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVF | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVF_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVG_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVH_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdRDCVI_Fuelcell | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdSTCOMM | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdWRCFG | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdWRCFG2 | ) |
TEST_LTC_DECLARE_GET | ( | ltc_cmdWRCOMM | ) |
void TEST_LTC_SetFirstMeasurementCycleFinished | ( | LTC_STATE_s * | ltc_state | ) |
|
extern |
This variable contains the internal state of the LTC state machine.
Definition at line 137 of file ltc_6806.c.