38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
|
/**
|
||
|
******************************************************************************
|
||
|
* @file
|
||
|
* @author
|
||
|
* @version
|
||
|
* @date
|
||
|
* @brief
|
||
|
* @function List:
|
||
|
******************************************************************************
|
||
|
* @attention
|
||
|
*
|
||
|
*
|
||
|
* <h2><center>© COPYRIGHT 2021 </center></h2>
|
||
|
******************************************************************************
|
||
|
* @History:
|
||
|
* @Author:
|
||
|
* @Data:
|
||
|
* @Version:
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef _CANTP_CBK_H_
|
||
|
#define _CANTP_CBK_H_
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Includes
|
||
|
*******************************************************************************/
|
||
|
#include "ComStack_Types.h"
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Prototypes of export functions
|
||
|
*******************************************************************************/
|
||
|
extern void CanTp_RxIndication(PduIdType CanTpRxPduId, const PduInfoType* pCanTpRxPduPtr);
|
||
|
extern void CanTp_TxConfirmation(PduIdType CanTpTxPduId);
|
||
|
|
||
|
|
||
|
#endif
|