X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFETMCPCANCommunication.py;h=226366eb981585a73c805242ba8ca7e86eeb4e7f;hp=40983c2b643e0f9cf297550070543eb30e12ae03;hb=063169b97150bc63858a393f503273dbaa3489a5;hpb=8e9568074076cd86c2058d41065bba4e7f9bb2e0;ds=sidebyside diff --git a/client/GoodFETMCPCANCommunication.py b/client/GoodFETMCPCANCommunication.py index 40983c2..226366e 100644 --- a/client/GoodFETMCPCANCommunication.py +++ b/client/GoodFETMCPCANCommunication.py @@ -157,7 +157,9 @@ class GoodFETMCPCANCommunication: #add the data to list if the pointer was included if(data != None and packet != None): #data.append(self.client.packet2parsedstr(packet)) - data.put(self.client.packet2parsed(packet)) + packetParsed = self.client.packet2parsed(packet) + packetParsed["time"] =time.time() + data.put(packetParsed) if(debug == True): #check packet status MCPstatusReg = self.client.MCPrxstatus();