rusefi-1/firmware/hw_layer/can_hw.h

46 lines
1.2 KiB
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file can_hw.h
*
* @date Dec 11, 2013
2018-12-31 13:00:41 -08:00
* @author Andrey Belomutskiy, (c) 2012-2019
2015-07-10 06:01:56 -07:00
*/
#ifndef CAN_HW_H_
#define CAN_HW_H_
2018-01-29 16:41:39 -08:00
#include "tunerstudio_configuration.h"
2015-07-10 06:01:56 -07:00
// CAN Bus ID for broadcast
/**
* e46 data is from http://forums.bimmerforums.com/forum/showthread.php?1887229
*
* Same for Mini Cooper? http://vehicle-reverse-engineering.wikia.com/wiki/MINI
2018-10-21 08:27:19 -07:00
*
* All the below packets are using 500kb/s
*
2015-07-10 06:01:56 -07:00
*/
#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_BMW_E46_CLUSTER_STATUS_2 0x615
#define CAN_FIAT_MOTOR_INFO 0x561
#define CAN_MAZDA_RX_RPM_SPEED 0x201
#define CAN_MAZDA_RX_STEERING_WARNING 0x300
2015-07-10 06:01:56 -07:00
#define CAN_MAZDA_RX_STATUS_1 0x212
#define CAN_MAZDA_RX_STATUS_2 0x420
#define CAN_VAG_RPM 0x280
#define CAN_VAG_CLT 0x289
void initCan(void);
2017-05-15 20:33:22 -07:00
void stopCanPins(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void startCanPins(DECLARE_ENGINE_PARAMETER_SIGNATURE);
2015-07-10 06:01:56 -07:00
void commonTxInit(int eid);
void sendCanMessage();
2017-01-11 18:04:22 -08:00
void setCanType(int type);
2015-07-10 06:01:56 -07:00
void setTxBit(int offset, int index);
2017-05-15 20:33:22 -07:00
void enableFrankensoCan(DECLARE_ENGINE_PARAMETER_SIGNATURE);
2018-01-29 16:41:39 -08:00
void postCanState(TunerStudioOutputChannels *tsOutputChannels);
2015-07-10 06:01:56 -07:00
#endif /* CAN_HW_H_ */