#include "CanIf.h" void PduR_CanTpTxConfirmation(PduIdType txPduId, Std_ReturnType result) { } void PduR_CanTpRxIndication(PduIdType rxPduId, Std_ReturnType result) { } BufReq_ReturnType PduR_CanTpStartOfReception(PduIdType pduId, const PduInfoType *pPduInfo, PduLengthType tpSduLength, PduLengthType *pBufferSize) { return BUFREQ_OK; } BufReq_ReturnType PduR_CanTpCopyTxData(PduIdType txPduId, const PduInfoType *pPduInfo, const RetryInfoType *pRetryInfo, PduLengthType *pAvailableData) { return BUFREQ_OK; } BufReq_ReturnType PduR_CanTpCopyRxData(PduIdType rxPduId, const PduInfoType *pPduInfo, PduLengthType *pBuffer) { return BUFREQ_OK; } Std_ReturnType CanIf_Transmit(PduIdType txPduId, const PduInfoType *pPduInfo) { return BUFREQ_OK; }