/******************************************************************************* ** 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 : GptCallout.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 "Stub.h" #include "IoHwAb.h" #include "Gpt.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 CDD_START_SEC_CALLOUT_CODE #include "MemMap.h" /******************************************************************************* ** FUNCTION NAME : StpTimer0Notification ** ** ** ** DESCRIPTION : Function for timer notifications ** ** ** ** PRE-CONDITIONS : None ** ** ** ** PARAMETERS : Input Parameters : None ** ** InOut Parameters : None ** ** Output Parameters : None ** ** ** ** RETURN : None ** ** ** ** Remarks : Global Variable(s) : None ** ** Function(s) invoked : None ** ** ** *******************************************************************************/ void StpTimer0Notification(void) { #if (GPT_TESTING == STD_ON) Gpt_StartTimer(GptConf_GptChannelConfiguration_StpTimer0,App_10000); #endif } #define CDD_STOP_SEC_CALLOUT_CODE #include "MemMap.h" /******************************************************************************* ** End of File ** *******************************************************************************/