37 lines
667 B
C
37 lines
667 B
C
// Generator version : v3.1
|
|
// DBC filename : CCUdbg.dbc
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "dbccodeconf.h"
|
|
|
|
#include "candb_dbg.h"
|
|
|
|
typedef struct
|
|
{
|
|
XCP_CCU_RX_t XCP_CCU_RX;
|
|
} tester_candb_dbg_rx_t;
|
|
|
|
typedef struct
|
|
{
|
|
dbg_Cmd_Act_Information_t dbg_Cmd_Act_Information;
|
|
XCP_CCU_RX_t XCP_CCU_RX;
|
|
} tester_candb_dbg_tx_t;
|
|
|
|
uint32_t tester_candb_dbg_Receive(tester_candb_dbg_rx_t* m, const uint8_t* d, uint32_t msgid, uint8_t dlc);
|
|
|
|
#ifdef __DEF_TESTER_CANDB_DBG__
|
|
|
|
extern tester_candb_dbg_rx_t tester_candb_dbg_rx;
|
|
|
|
extern tester_candb_dbg_tx_t tester_candb_dbg_tx;
|
|
|
|
#endif // __DEF_TESTER_CANDB_DBG__
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|