From ca0811466affbfafaff5ddb0f0d7bfb13e5f48c8 Mon Sep 17 00:00:00 2001 From: chrishoder Date: Thu, 14 Feb 2013 05:26:54 +0000 Subject: [PATCH 1/1] git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1496 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- client/experiments.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/experiments.py b/client/experiments.py index 0caccad..04777da 100644 --- a/client/experiments.py +++ b/client/experiments.py @@ -183,12 +183,12 @@ class experiments(GoodFETMCPCANCommunication): print "Fuzzing on standard ID: %d" %standardId self.client.serInit() self.spitSetup(freq) - packet = [0,0,0,0,0,0,0,0] + packetTemp = [0,0,0,0,0,0,0,0] #form a basic packet #### split SID into different regs - SIDlow = (standardid[0] & 0x07) << 5; # get SID bits 2:0, rotate them to bits 7:5 - SIDhigh = (standardid[0] >> 3) & 0xFF; # get SID bits 10:3, rotate them to bits 7:0 + SIDlow = (standardId & 0x07) << 5; # get SID bits 2:0, rotate them to bits 7:5 + SIDhigh = (standardId >> 3) & 0xFF; # get SID bits 10:3, rotate them to bits 7:0 packet = [SIDhigh, SIDlow, 0x00,0x00, # pad out EID regs 0x08, # bit 6 must be set to 0 for data frame (1 for RTR) @@ -199,7 +199,7 @@ class experiments(GoodFETMCPCANCommunication): #get folder information (based on today's date) now = datetime.datetime.now() datestr = now.strftime("%Y%m%d") - path = self.DATALOCATION+datestr+".csv" + path = self.DATALOCATION+datestr+"_GenerationFuzzedPackets.csv" filename = path outfile = open(filename,'a'); dataWriter = csv.writer(outfile,delimiter=','); @@ -217,7 +217,7 @@ class experiments(GoodFETMCPCANCommunication): packet[i+5] = value #put a rough time stamp on the data and get all the data bytes - row = [time.time(), standardId] + row = ['#',time.time(), standardId] msg = "Injecting: " for i in range(5,13): row.append(packet[i]) @@ -229,10 +229,10 @@ class experiments(GoodFETMCPCANCommunication): for i in range(1,writesPerFuzz): self.client.MCPrts(TXB0=True) time.sleep(period/1000) - + fuzzNumber += 1 outfile.close() - \ No newline at end of file + -- 2.20.1