40 lines
663 B
C
40 lines
663 B
C
// Generator version : v3.1
|
|
// DBC filename : CCU.dbc
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "dbccodeconf.h"
|
|
|
|
#include "candb.h"
|
|
|
|
typedef struct
|
|
{
|
|
ESC_04_t ESC_04;
|
|
BCM_VEH_STATE_t BCM_VEH_STATE;
|
|
FIU_Cmd_t FIU_Cmd;
|
|
VEH_VIN_t VEH_VIN;
|
|
BCM_RunningBoards_t BCM_RunningBoards;
|
|
} rbcu_candb_rx_t;
|
|
|
|
typedef struct
|
|
{
|
|
RBCU_BODY_Stat_t RBCU_BODY_Stat;
|
|
} rbcu_candb_tx_t;
|
|
|
|
uint32_t rbcu_candb_Receive(rbcu_candb_rx_t* m, const uint8_t* d, uint32_t msgid, uint8_t dlc);
|
|
|
|
#ifdef __DEF_RBCU_CANDB__
|
|
|
|
extern rbcu_candb_rx_t rbcu_candb_rx;
|
|
|
|
extern rbcu_candb_tx_t rbcu_candb_tx;
|
|
|
|
#endif // __DEF_RBCU_CANDB__
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|