/******************************************************************************* ** KPIT Technologies Limited ** ** ** ** KPIT Technologies Limited owns all the rights to this work. This ** ** work shall not be copied, reproduced, used, modified or its information ** ** disclosed without the prior written authorization of KPIT Technologies ** ** Limited. ** ** ** ** MODULE : McuCallout.c ** ** ** ** TARGET : All ** ** ** ** PRODUCT : Stub ** ** ** ** PURPOSE : Stub for AUTOSAR BSW modules ** ** ** ** PLATFORM DEPENDANT [yes/no]: no ** ** ** ** TO BE CHANGED BY USER [yes/no]: no ** ** ** *******************************************************************************/ /******************************************************************************* ** MISRA-C:2012 violations Section ** *******************************************************************************/ /** #section mcucallout_c_REF_1 * Violates MISRA C:2012 Rule-2.2 (Required), This is stub being used and hence * does not affect functionality. **/ /******************************************************************************* ** Revision History ** ******************************************************************************** ** Revision Date By Description ** ******************************************************************************** ** 1.0.1 07-Feb-2022 KPIT Memory sections updated ** ** 1.0.0 24-Sep-2019 KPIT Initial Version ** *******************************************************************************/ /******************************************************************************* ** Include Section ** *******************************************************************************/ #include "McuCallout.h" /* Violates #ref mcucallout_c_REF_1, MISRA C:2012 Rule-2.2 (Advisory) */ /* PRQA S 3112 EOF */ /* PRQA S 5087 EOF */ /******************************************************************************* ** Function Definitions ** *******************************************************************************/ #define APPL_START_SEC_CODE #include "MemMap.h" /******************************************************************************* ** FUNCTION NAME : ErrorCalloutHandler ** ** ** ** DESCRIPTION : Function denotes that an error has occured ** ** ** ** PRE-CONDITIONS : None ** ** ** ** PARAMETERS : Input Parameters : ModuleId, InstanceId, ApiId, ** ** ErrorId ** ** InOut Parameters : None ** ** Output Parameters : None ** ** ** ** RETURN : None ** ** ** ** REMARKS : Global Variable(s) : None ** ** Function(s) invoked : None ** ** ** *******************************************************************************/ void ErrorCalloutHandler(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 ErrorId) { UNUSED(ModuleId); UNUSED(InstanceId); UNUSED(ApiId); UNUSED(ErrorId); } #define APPL_STOP_SEC_CODE #include "MemMap.h" /******************************************************************************* ** End of File ** *******************************************************************************/