123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #ifndef DET_STUB_H
- #define DET_STUB_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "Det.h"
- #define DET_START_SEC_CODE
- #include "Det_MemMap.h"
- extern boolean Det_TestLastReportError(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 ErrorId);
- extern boolean Det_TestLastReportRuntimeError(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 ErrorId);
- extern boolean Det_TestLastReportTransientFault(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 FaultId);
- extern boolean Det_TestNoError(void);
- extern boolean Det_TestNoRuntimeError(void);
- extern boolean Det_TestNoTransientFault(void);
- #define DET_STOP_SEC_CODE
- #include "Det_MemMap.h"
- #ifdef __cplusplus
- }
- #endif
- #endif
|