changes to allow for deltaT of each packet to work. debugged and displaying nicely
authorchrishoder <chrishoder@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Wed, 6 Feb 2013 04:43:33 +0000 (04:43 +0000)
committerchrishoder <chrishoder@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Wed, 6 Feb 2013 04:43:33 +0000 (04:43 +0000)
git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1462 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

client/GoodFETMCPCANCommunication.py

index 40983c2..226366e 100644 (file)
@@ -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();