123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #ifndef ECUM_CBK_H
- #define ECUM_CBK_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "EcuM_Cfg.h"
- #define ECUM_CBK_VENDOR_ID 43
- #define ECUM_CBK_MODULE_ID 10
- #define ECUM_CBK_AR_RELEASE_MAJOR_VERSION 4
- #define ECUM_CBK_AR_RELEASE_MINOR_VERSION 4
- #define ECUM_CBK_AR_RELEASE_REVISION_VERSION 0
- #define ECUM_CBK_SW_MAJOR_VERSION 1
- #define ECUM_CBK_SW_MINOR_VERSION 0
- #define ECUM_CBK_SW_PATCH_VERSION 0
- #if (ECUM_CBK_VENDOR_ID != ECUM_CFG_VENDOR_ID)
- #error "EcuM_Cbk.h and EcuM_Cfg.h have different vendor ids"
- #endif
- #if ((ECUM_CBK_AR_RELEASE_MAJOR_VERSION != ECUM_CFG_AR_RELEASE_MAJOR_VERSION) || \
- (ECUM_CBK_AR_RELEASE_MINOR_VERSION != ECUM_CFG_AR_RELEASE_MINOR_VERSION) || \
- (ECUM_CBK_AR_RELEASE_REVISION_VERSION != ECUM_CFG_AR_RELEASE_REVISION_VERSION))
- #error "AutoSar Version Numbers of EcuM_Cbk.h and EcuM_Cfg.h are different"
- #endif
- #if ((ECUM_CBK_SW_MAJOR_VERSION != ECUM_CFG_SW_MAJOR_VERSION) || \
- (ECUM_CBK_SW_MINOR_VERSION != ECUM_CFG_SW_MINOR_VERSION) || \
- (ECUM_CBK_SW_PATCH_VERSION != ECUM_CFG_SW_PATCH_VERSION))
- #error "Software Version Numbers of EcuM_Cbk.h and EcuM_Cfg.h are different"
- #endif
- #define ECUM_START_SEC_VAR_CLEARED_32
- #include "Ecum_MemMap.h"
- extern EcuM_WakeupSourceType EcuMLastWakeupEvent;
- #define ECUM_STOP_SEC_VAR_CLEARED_32
- #include "Ecum_MemMap.h"
- #define ECUM_START_SEC_CODE
- #include "Ecum_MemMap.h"
- void EcuM_SetWakeupEvent(EcuM_WakeupSourceType sources);
- void EcuM_ValidateWakeupEvent(EcuM_WakeupSourceType sources);
- void EcuM_CheckWakeup(EcuM_WakeupSourceType wakeupSource);
- #define ECUM_STOP_SEC_CODE
- #include "Ecum_MemMap.h"
- #ifdef __cplusplus
- }
- #endif
- #endif
|