foxBMS - Unit Tests  1.6.0
The foxBMS Unit Tests API Documentation
no-imd.c File Reference

Driver for the dummy insulation monitoring driver. More...

#include "no-imd.h"
#include "database.h"
#include <stdint.h>
Include dependency graph for no-imd.c:

Go to the source code of this file.

Functions

static IMD_FSM_STATES_e NOIMD_Initialize (void)
 
static IMD_FSM_STATES_e NOIMD_EnableImd (void)
 
static IMD_FSM_STATES_e NOIMD_MeasureInsulation (DATA_BLOCK_INSULATION_MONITORING_s *pTableInsulationMonitoring)
 Function to write dummy values into the database. More...
 
static IMD_FSM_STATES_e NOIMD_DisableImd (void)
 
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...
 
IMD_FSM_STATES_e TEST_NOIMD_Initialize (void)
 
IMD_FSM_STATES_e TEST_NOIMD_EnableImd (void)
 
IMD_FSM_STATES_e TEST_NOIMD_MeasureInsulation (DATA_BLOCK_INSULATION_MONITORING_s *pTableInsulationMonitoring)
 
IMD_FSM_STATES_e TEST_NOIMD_DisableImd (void)
 

Detailed Description

Driver for the dummy insulation monitoring driver.

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:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

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®″
Author
foxBMS Team
Date
2020-11-20 (date of creation)
Updated
2023-10-12 (date of last update)
Version
v1.6.0
Prefix
NOIMD

Dummy driver that provides a default resistance and returns that the measurement is always valid.

Definition in file no-imd.c.

Function Documentation

◆ IMD_ProcessEnableState()

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 fulfilled after one call.

Returns
IMD_FSM_STATE_RUNNING if startup has been completed. Returns IMD_FSM_STATE_ERROR if an error is detected that prohibits a working IMD driver.

Definition at line 115 of file no-imd.c.

Here is the call graph for this function:

◆ IMD_ProcessInitializationState()

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.

Returns
IMD_FSM_STATE_INITIALIZATION if initialization not finished and another call is required. IMD_FSM_STATE_IMD_ENABLE if initialization is finished and IMD_FSM_STATE_ERROR if an error is detected that prohibits a working IMD driver.

Definition at line 111 of file no-imd.c.

Here is the call graph for this function:

◆ IMD_ProcessRunningState()

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

Parameters
pTableInsulationMonitoringpointer to insulation monitoring database entry
Returns
IMD_FSM_STATE_RUNNING if measurement works as expected, otherwise IMD_FSM_STATE_ERROR if an error is detected that prohibits a further execution of the IMD driver.

Definition at line 119 of file no-imd.c.

Here is the call graph for this function:

◆ IMD_ProcessShutdownState()

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.

Returns
IMD_FSM_STATE_SHUTDOWN if shutdown state is not finished and another call is required. IMD_FSM_STATE_IMD_ENABLE if shut down has been completed and IMD_FSM_STATE_ERROR if an error is detected that prohibits a working IMD driver.

Definition at line 124 of file no-imd.c.

Here is the call graph for this function:

◆ NOIMD_DisableImd()

static IMD_FSM_STATES_e NOIMD_DisableImd ( void  )
static

Enable IMD function

Definition at line 106 of file no-imd.c.

◆ NOIMD_EnableImd()

static IMD_FSM_STATES_e NOIMD_EnableImd ( void  )
static

Enable IMD function

Definition at line 91 of file no-imd.c.

◆ NOIMD_Initialize()

static IMD_FSM_STATES_e NOIMD_Initialize ( void  )
static

Initialize function

Definition at line 87 of file no-imd.c.

◆ NOIMD_MeasureInsulation()

static IMD_FSM_STATES_e NOIMD_MeasureInsulation ( DATA_BLOCK_INSULATION_MONITORING_s pTableInsulationMonitoring)
static

Function to write dummy values into the database.

Parameters
pTableInsulationMonitoringpointer to database entry

Definition at line 95 of file no-imd.c.

◆ TEST_NOIMD_DisableImd()

IMD_FSM_STATES_e TEST_NOIMD_DisableImd ( void  )

Definition at line 139 of file no-imd.c.

Here is the call graph for this function:

◆ TEST_NOIMD_EnableImd()

IMD_FSM_STATES_e TEST_NOIMD_EnableImd ( void  )

Definition at line 133 of file no-imd.c.

Here is the call graph for this function:

◆ TEST_NOIMD_Initialize()

IMD_FSM_STATES_e TEST_NOIMD_Initialize ( void  )

Definition at line 130 of file no-imd.c.

Here is the call graph for this function:

◆ TEST_NOIMD_MeasureInsulation()

IMD_FSM_STATES_e TEST_NOIMD_MeasureInsulation ( DATA_BLOCK_INSULATION_MONITORING_s pTableInsulationMonitoring)

Definition at line 136 of file no-imd.c.

Here is the call graph for this function: