verbose CAN bugfix
This commit is contained in:
parent
f8319c283c
commit
97c160bebe
|
@ -68,7 +68,7 @@ static void printPacket(const CANRxFrame &rx) {
|
||||||
// only print info if we're in can debug mode
|
// 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
|
// 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],
|
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]);
|
rx.data8[4], rx.data8[5], rx.data8[6], rx.data8[7]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue