diff --git a/communication/packet/canpacket.cpp b/communication/packet/canpacket.cpp index 41c38d4..4cc0447 100644 --- a/communication/packet/canpacket.cpp +++ b/communication/packet/canpacket.cpp @@ -76,6 +76,10 @@ std::shared_ptr HardwareCANPacket::DecodeToMessage(const std::vector } } + msg->transmitted = data->eid.TXMSG; + msg->error = data->eid.TXAborted || data->eid.TXError || data->eid.TXLostArb; + msg->description = data->stats; + return msg; }