From 97c160bebe29ad519c18d3722b7ece491f238856 Mon Sep 17 00:00:00 2001 From: rusefi Date: Thu, 30 Sep 2021 15:03:03 -0400 Subject: [PATCH] verbose CAN bugfix --- firmware/controllers/can/can_rx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/can/can_rx.cpp b/firmware/controllers/can/can_rx.cpp index a480b48738..483c3a55b2 100644 --- a/firmware/controllers/can/can_rx.cpp +++ b/firmware/controllers/can/can_rx.cpp @@ -68,7 +68,7 @@ static void printPacket(const CANRxFrame &rx) { // only print info if we're in can debug mode // internet people use both hex and decimal to discuss packed IDs, for usability it's better to print both right here - efiPrintf("CAN_rx %x %d %x, %x %x %x %x %x %x %x %x", CAN_SID(rx), + efiPrintf("CAN_rx %x %d %x: %x %x %x %x %x %x %x %x", CAN_SID(rx), CAN_SID(rx), 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]);