50 lines
2.8 KiB
C
50 lines
2.8 KiB
C
/**********************************************************************************************************************
|
|
* FILE DESCRIPTION
|
|
* -----------------------------------------------------------------------------------------------------------------*/
|
|
/** \file
|
|
* \brief Event-driven hierarchical finite state machine
|
|
*
|
|
* -------------------------------------------------------------------------------------------------------------------
|
|
* COPYRIGHT
|
|
* -------------------------------------------------------------------------------------------------------------------
|
|
* \par Copyright
|
|
* \verbatim
|
|
* Copyright (c) 2023 by Vector Informatik GmbH. All rights reserved.
|
|
*
|
|
* This software is copyright protected and proprietary to Vector Informatik GmbH.
|
|
* Vector Informatik GmbH grants to you only those rights as set out in the license conditions.
|
|
* All other rights remain with Vector Informatik GmbH.
|
|
* \endverbatim
|
|
*/
|
|
/*********************************************************************************************************************/
|
|
|
|
/**********************************************************************************************************************
|
|
* REVISION HISTORY
|
|
* -------------------------------------------------------------------------------------------------------------------
|
|
* Version Date Author Change Id Description
|
|
* -------------------------------------------------------------------------------------------------------------------
|
|
* 01.00.00 2012-10-30 visjhg - First implementation
|
|
* 01.00.01 2012-12-10 visjhg - No changes
|
|
* 01.01.00 2013-12-11 visjhg ESCAN00071901 Renamed package to FblLib_Fsm
|
|
* visase - Performed MISRA checks
|
|
* 01.01.01 2019-01-24 visrie ESCAN00101864 Reworked include structure
|
|
* 01.02.00 2023-12-15 vistbe FBL-7986 Perform MISRA analysis
|
|
*********************************************************************************************************************/
|
|
|
|
#ifndef FBL_FSM_INC_H
|
|
#define FBL_FSM_INC_H
|
|
|
|
/**********************************************************************************************************************
|
|
* INCLUDES
|
|
*********************************************************************************************************************/
|
|
|
|
#include "fbl_inc.h"
|
|
#include "fbl_fsm_cfg.h"
|
|
#include "fbl_fsm.h"
|
|
|
|
#endif /* __FBL_FSM_INC_H__ */
|
|
|
|
/**********************************************************************************************************************
|
|
* END OF FILE: FBL_FSM_INC.H
|
|
*********************************************************************************************************************/
|