X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFETMCPCANCommunication.py;fp=client%2FGoodFETMCPCANCommunication.py;h=ef37869cee8dbb408efd51f422901c8257ee4a29;hp=b80f7beec58b84f76434a551ce640228e7237c82;hb=3e91eebe19cc7c71165445b4936af7d003b60991;hpb=4bb0cadcfeffe8a2c60bf91d30db62d5d0c0807d diff --git a/client/GoodFETMCPCANCommunication.py b/client/GoodFETMCPCANCommunication.py index b80f7be..ef37869 100644 --- a/client/GoodFETMCPCANCommunication.py +++ b/client/GoodFETMCPCANCommunication.py @@ -3,13 +3,11 @@ # # (C) 2012 Travis Goodspeed # +# Edited By: Chris Hoder 2013 +# Ted Summers 2013 +# Grayson Zulauf 2013 # -# Ted's working copy -# 1) getting hot reads on frequency -# 2) allow sniffing in "normal" mode to get ack bits -# --check if that's whats causing error flags in board-to-board transmission -# -# + import sys; import binascii; @@ -24,7 +22,7 @@ import Queue class GoodFETMCPCANCommunication: - def __init__(self, dataLocation): + def __init__(self, dataLocation = "../../contrib/ThayerData/"): self.client=GoodFETMCPCAN(); """ Communication with the bus""" self.client.serInit() @@ -795,6 +793,25 @@ class GoodFETMCPCANCommunication: # row[4] = Data Byte 1 # .... up to Data Byte 8 ( THIS ASSUMES A PACKET OF LENGTH 8!!! def writeData(self,packets,freq): + """ + This method will write a list of packets to the bus at the given frequency. This method assumes a packet + length of 8 for all packets as well as a standard id. + + @type packets: List of Lists + @param packets: The list of packets to be injected into the bus. Each element of packets is a list that is + a packet to be injected onto the bus. These packets are assumed to be in the following format:: + row[0] time delay relative to the last packet. if 0 or empty there will be no delay + row[1] = Standard ID (integer) + row[2] = Data Length (0-8) (if it is zero we assume an Remote Transmit Request) + row[3] = Data Byte 0 + row[4] = Data Byte 1 + ... + row[10] = Data Byte 7 + + @type freq: number + @param freq: Frequency of the CAN bus + + """ self.client.serInit() self.spitSetup(freq) for row in packets: