From c4ce803d62528abbb1eeb50f68dfbcb4fd5b3bd8 Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Thu, 19 Dec 2024 15:54:27 -0500 Subject: [PATCH] LINMessage: Fix timestamp scaling --- communication/decoder.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/communication/decoder.cpp b/communication/decoder.cpp index ac00464..34e9b8e 100644 --- a/communication/decoder.cpp +++ b/communication/decoder.cpp @@ -178,6 +178,7 @@ bool Decoder::decode(std::shared_ptr& result, const std::shared_ptr(result.get()); msg.network = packet->network; + msg.timestamp *= timestampResolution; return true; } case Network::Type::MDIO: {