foxBMS - Unit Tests
1.3.0
The foxBMS Unit Tests API Documentation
|
Driver for the insulation monitoring. More...
#include "bender_ir155.h"
#include "bender_ir155_cfg.h"
#include "bender_ir155_helper.h"
#include "database.h"
#include "fram.h"
#include "io.h"
Go to the source code of this file.
Macros | |
#define | IR155_MINIMUM_INSULATION_RESISTANCE_kOhm (0u) |
Functions | |
static IMD_FSM_STATES_e | IR155_InitializeModule (void) |
static IMD_FSM_STATES_e | IR155_MeasureInsulation (DATA_BLOCK_INSULATION_MONITORING_s *pTableInsulationMonitoring) |
IMD_FSM_STATES_e | IMD_ProcessInitializationState (void) |
Processes the initialization state. More... | |
IMD_FSM_STATES_e | IMD_ProcessEnableState (void) |
Processes the IMD enable state. More... | |
IMD_FSM_STATES_e | IMD_ProcessRunningState (DATA_BLOCK_INSULATION_MONITORING_s *pTableInsulationMonitoring) |
Processes the running state. More... | |
IMD_FSM_STATES_e | IMD_ProcessShutdownState (void) |
Processes the shutdown state. More... | |
Driver for the insulation monitoring.
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 bender_ir155.c.
#define IR155_MINIMUM_INSULATION_RESISTANCE_kOhm (0u) |
Dutycycle - resistance table for Bender IR155-3204 (Art. No. B91068139)
dc | resistance/kOhm | description |
---|---|---|
100 | -63,16 | not valid |
98 | -38,71 | invalid |
95 | =0,00 | invalid |
95 | >0,00 | shortcut |
90 | 70,59 | very low resistance |
80 | 240,00 | low resistance |
70 | 461,54 | low resistance |
60 | 763,64 | lowmid resistance |
50 | 1200,00 | highmid resistance |
40 | 1885,71 | highmid resistance |
30 | 3120,00 | high resistance |
20 | 6000,00 | high resistance |
10 | 20400,00 | very high resistance |
5 | oo | very high resistance |
3 | -55200,00 | invalid |
0 | -22800,00 | invalid |
Definition at line 90 of file bender_ir155.c.
IMD_FSM_STATES_e IMD_ProcessEnableState | ( | void | ) |
Processes the IMD enable state.
This function needs to be implemented in the dedicated driver. This function enables the actual IMD device to start the insulation measurement. Functionality need to be fullfilled after one call.
Definition at line 211 of file bender_ir155.c.
IMD_FSM_STATES_e IMD_ProcessInitializationState | ( | void | ) |
Processes the initialization state.
This function needs to be implemented in the dedicated driver. This function initializes the required SW modules and peripherals but does not start the actual IMD measurement.
Definition at line 207 of file bender_ir155.c.
IMD_FSM_STATES_e IMD_ProcessRunningState | ( | DATA_BLOCK_INSULATION_MONITORING_s * | pTableInsulationMonitoring | ) |
Processes the running state.
This function needs to be implemented in the dedicated driver
pTableInsulationMonitoring | pointer to insulation monitoring database entry |
Definition at line 217 of file bender_ir155.c.
IMD_FSM_STATES_e IMD_ProcessShutdownState | ( | void | ) |
Processes the shutdown state.
This function needs to be implemented in the dedicated driver. This function disables the actual IMD device to stop the insulation measurement.
Definition at line 222 of file bender_ir155.c.
|
static |
Initialize function for Bender IR155 driver
Definition at line 104 of file bender_ir155.c.
|
static |
Acquire measurement results from Bender IR155 and write them into the database
Definition at line 110 of file bender_ir155.c.