26 lines
540 B
C
26 lines
540 B
C
/**
|
|
* @file can_hw.h
|
|
*
|
|
* @date Dec 11, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
*/
|
|
|
|
#ifndef CAN_HW_H_
|
|
#define CAN_HW_H_
|
|
|
|
// CAN Bus ID for broadcast
|
|
/**
|
|
* e46 data is from http://forums.bimmerforums.com/forum/showthread.php?1887229
|
|
*/
|
|
#define CAN_BMW_E46_SPEED 0x153
|
|
#define CAN_BMW_E46_RPM 0x316
|
|
#define CAN_BMW_E46_DME2 0x329
|
|
#define CAN_BMW_E46_CLUSTER_STATUS 0x613
|
|
#define CAN_FIAT_MOTOR_INFO 0x561
|
|
#define CAN_VAG_RPM 0x280
|
|
#define CAN_VAG_CLT 0x289
|
|
|
|
void initCan(void);
|
|
|
|
#endif /* CAN_HW_H_ */
|