verbose CAN bugfix

This commit is contained in:
rusefi 2021-09-30 15:03:03 -04:00
parent f8319c283c
commit 97c160bebe
1 changed files with 1 additions and 1 deletions

View File

@ -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]);