foxBMS  1.6.0
The foxBMS Battery Management System API Documentation
diag.c File Reference

Diagnosis driver implementation. More...

#include "diag.h"
#include "fstd_types.h"
#include "os.h"
#include <stdint.h>
Include dependency graph for diag.c:

Go to the source code of this file.

Functions

static void DIAG_Reset (void)
 DIAG_Reset resetsall needed structures. More...
 
static uint8_t DIAG_EntryWrite (uint8_t eventID, DIAG_EVENT_e event, uint32_t data)
 DIAG_EntryWrite adds an error entry. More...
 
STD_RETURN_TYPE_e DIAG_Initialize (DIAG_DEV_s *diag_dev_pointer)
 DIAG_Init initializes all needed structures/buffers. More...
 
STD_RETURN_TYPE_e DIAG_GetDiagnosisEntryState (DIAG_ID_e diagnosisEntry)
 Checks if passed diagnosis entry has been triggered or not. More...
 
void DIAG_PrintErrors (void)
 Prints contents of the error buffer on user request. More...
 
DIAG_RETURNTYPE_e DIAG_Handler (DIAG_ID_e diagId, DIAG_EVENT_e event, DIAG_IMPACT_LEVEL_e impact, uint32_t data)
 DIAG_Handler provides generic error handling, based on diagnosis group. More...
 
STD_RETURN_TYPE_e DIAG_CheckEvent (STD_RETURN_TYPE_e cond, DIAG_ID_e diagId, DIAG_IMPACT_LEVEL_e impact, uint32_t data)
 DIAG_CheckEvent provides a simple interface to check an event for STD_OK. More...
 
uint32_t DIAG_GetDelay (DIAG_ID_e diagnosisEntry)
 Get configured delay of passed diagnosis entry. More...
 
bool DIAG_IsAnyFatalErrorSet (void)
 Check if any fatal error is set. More...
 

Variables

static DIAG_DIAGNOSIS_STATE_s diag
 
static DIAG_DEV_sdiag_devptr
 
static uint8_t diag_locked = 0
 

Detailed Description

Diagnosis driver implementation.

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
2019-11-28 (date of creation)
Updated
2023-10-12 (date of last update)
Version
v1.6.0
Prefix
DIAG

This diagnose module is responsible for error handling and reporting. Reported errors are logged into the global database and can be reviewed on user request.

Definition in file diag.c.

Function Documentation

◆ DIAG_CheckEvent()

STD_RETURN_TYPE_e DIAG_CheckEvent ( STD_RETURN_TYPE_e  cond,
DIAG_ID_e  diagId,
DIAG_IMPACT_LEVEL_e  impact,
uint32_t  data 
)

DIAG_CheckEvent provides a simple interface to check an event for STD_OK.

DIAG_CheckEvent is a wrapper function for DIAG_Handler(). In simple cases where a return value that is not STD_OK (or a 0 casted to STD_OK) should increase the error counter in a diagnosis channel, this function should be used instead of directly calling the DIAG_Handler().

Parameters
condcondition
diagIdevent ID of the event that has occurred
impactDIAG_IMPACT_LEVEL_e of DIAG_ID_e
dataindividual information for DIAG_ID_e e.g. string number,..
Returns
STD_OK if ok, STD_NOT_OK if not ok

Definition at line 374 of file diag.c.

Here is the call graph for this function:

◆ DIAG_EntryWrite()

static uint8_t DIAG_EntryWrite ( uint8_t  eventID,
DIAG_EVENT_e  event,
uint32_t  data 
)
static

DIAG_EntryWrite adds an error entry.

This function adds an entry to the error buffer. It provides some functionality to prevent duplicates from being logged. Multiple occurring error doesn't get logged anymore after they reached a pre-defined error count.

Parameters
eventIDID of entry
eventOK, NOK or RESET
dataindividual information for DIAG_ID_e e.g. string number,..
Returns
0xFF if event is logged, otherwise 0

Definition at line 211 of file diag.c.

◆ DIAG_GetDelay()

uint32_t DIAG_GetDelay ( DIAG_ID_e  diagnosisEntry)

Get configured delay of passed diagnosis entry.

Parameters
diagnosisEntryevent ID of diagnosis entry
Returns
configured delay in ms

Definition at line 386 of file diag.c.

◆ DIAG_GetDiagnosisEntryState()

STD_RETURN_TYPE_e DIAG_GetDiagnosisEntryState ( DIAG_ID_e  diagnosisEntry)

Checks if passed diagnosis entry has been triggered or not.

Parameters
diagnosisEntryevent ID of diagnosis entry
Returns
STD_OK if diagnosis entry has not surpassed error threshold, otherwise STD_NOT_OK

Definition at line 192 of file diag.c.

◆ DIAG_Handler()

DIAG_RETURNTYPE_e DIAG_Handler ( DIAG_ID_e  diagId,
DIAG_EVENT_e  event,
DIAG_IMPACT_LEVEL_e  impact,
uint32_t  data 
)

DIAG_Handler provides generic error handling, based on diagnosis group.

This function calls the handler functions depending on the diagnosis group of call. It needs to get called in every function which wants to apply some kind of diagnosis handling. According to its return value further treatment is either left to the calling module itself, or can be done in the callback function defined in diag_cfg.c

Parameters
diagIdDIAG_ID_e of the event that has occurred
eventevent that occurred (OK, NOK, RESET)
impactDIAG_IMPACT_LEVEL_e of DIAG_ID_e
dataindividual information for DIAG_ID_e e.g. string number,..
Returns
DIAG_HANDLER_RETURN_UNKNOWN if invalid DIAG_EVENT_e, otherwise return value of DIAG_RETURNTYPE_e

Definition at line 246 of file diag.c.

Here is the call graph for this function:

◆ DIAG_Initialize()

STD_RETURN_TYPE_e DIAG_Initialize ( DIAG_DEV_s diag_dev_pointer)

DIAG_Init initializes all needed structures/buffers.

This function provides initialization of the diagnose module. In case of miss behaviour it calls Reset and adds an entry into database to ensure data validity/report back malfunction

Parameters
diag_dev_pointer
Returns
STD_OK if ok, STD_NOT_OK if not ok

Iterate over diag_diagnosisIdConfiguration and check that a meaningful state transition time is configured if a severity of DIAG_FATAL_ERROR is configured.

Definition at line 116 of file diag.c.

Here is the call graph for this function:

◆ DIAG_IsAnyFatalErrorSet()

bool DIAG_IsAnyFatalErrorSet ( void  )

Check if any fatal error is set.

Returns
true, if a diagnosis entry with severity DIAG_FATAL_ERROR is set, otherwise false

Definition at line 391 of file diag.c.

Here is the call graph for this function:

◆ DIAG_PrintErrors()

void DIAG_PrintErrors ( void  )

Prints contents of the error buffer on user request.

Definition at line 208 of file diag.c.

◆ DIAG_Reset()

static void DIAG_Reset ( void  )
static

DIAG_Reset resetsall needed structures.

This function gets called during initialization of the diagnose module. It clears memory and counters used by diag later on.

Definition at line 104 of file diag.c.

Variable Documentation

◆ diag

state-variable of the diag module

Definition at line 71 of file diag.c.

◆ diag_devptr

DIAG_DEV_s* diag_devptr
static

pointer to the device configuration of the diag module

Definition at line 74 of file diag.c.

◆ diag_locked

uint8_t diag_locked = 0
static

superb implementation of a mutex for the diag module

Definition at line 77 of file diag.c.