From 756c882162686a94e336b485a3e87f288b51a5bb Mon Sep 17 00:00:00 2001 From: rusefi Date: Thu, 30 Sep 2021 15:27:39 -0400 Subject: [PATCH] verbose CAN bugfix --- firmware/controllers/can/can_rx.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/firmware/controllers/can/can_rx.cpp b/firmware/controllers/can/can_rx.cpp index 483c3a55b2..3613326a5c 100644 --- a/firmware/controllers/can/can_rx.cpp +++ b/firmware/controllers/can/can_rx.cpp @@ -68,8 +68,10 @@ 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), - CAN_SID(rx), rx.DLC, rx.data8[0], rx.data8[1], rx.data8[2], rx.data8[3], + 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]); }