rusefi-1/firmware/controllers/can/can_rx.cpp

82 lines
2.0 KiB
C++
Raw Normal View History

/**
* @file can_rx.cpp
*
* CAN reception handling. This file handles multiplexing incoming CAN frames as appropriate
* to the subsystems that consume them.
*
* @date Mar 19, 2020
* @author Matthew Kennedy, (c) 2020
*/
#include "global.h"
#if EFI_CAN_SUPPORT
#include "can.h"
#include "obd2.h"
#include "engine.h"
#include "can_sensor.h"
#include "can_vss.h"
EXTERN_ENGINE;
2021-02-05 08:27:51 -08:00
/**
* this build-in CAN sniffer is very basic but that's our CAN sniffer
*/
static void printPacket(const CANRxFrame& rx, Logging* logger) {
// only print info if we're in can debug mode
2021-02-05 08:27:51 -08:00
2021-02-05 16:17:22 -08:00
// internet people use both hex and decimal to discuss packed IDs, for usability it's better to print both right here
scheduleMsg(logger, "CAN_rx %x %d %x, %x %x %x %x %x %x %x %x", rx.SID, rx.SID, rx.DLC,
rx.data8[0], rx.data8[1],
rx.data8[2], rx.data8[3], rx.data8[4], rx.data8[5], rx.data8[6], rx.data8[7]);
2021-02-05 08:27:51 -08:00
}
volatile float canMap = 0;
2020-08-31 01:39:27 -07:00
CanSensorBase* cansensors_head = nullptr;
void serviceCanSubscribers(const CANRxFrame& frame, efitick_t nowNt) {
2020-08-31 01:39:27 -07:00
CanSensorBase* current = cansensors_head;
while (current) {
current = current->processFrame(frame, nowNt);
}
}
void registerCanSensor(CanSensorBase& sensor) {
2020-08-31 01:39:27 -07:00
sensor.setNext(cansensors_head);
cansensors_head = &sensor;
2020-08-31 19:47:33 -07:00
sensor.Register();
}
void processCanRxMessage(const CANRxFrame& frame, Logging* logger, efitick_t nowNt) {
if (CONFIG(debugMode) == DBG_CAN) {
printPacket(frame, logger);
}
serviceCanSubscribers(frame, nowNt);
//Vss is configurable, should we handle it here:
processCanRxVss(frame, nowNt);
#if EFI_CANBUS_SLAVE
if (frame.EID == CONFIG(verboseCanBaseAddress) + CAN_SENSOR_1_OFFSET) {
int16_t mapScaled = *reinterpret_cast<const int16_t*>(&frame.data8[0]);
canMap = mapScaled / (1.0 * PACK_MULT_PRESSURE);
} else
#endif
{
obdOnCanPacketRx(frame);
}
#if EFI_WIDEBAND_FIRMWARE_UPDATE
// Bootloader acks with address 0x727573 aka ascii "rus"
if (frame.EID == 0x727573) {
handleWidebandBootloaderAck();
}
#endif
}
#endif // EFI_CAN_SUPPORT