X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFET.py;h=3500c6260a401720dfccc73c2e456f3581cc5f9e;hp=1eb857599feab22eb8154d449eb86c3566603620;hb=b070c8ec3025b80f20b6230259fba989931c1d6b;hpb=a456d2fbf645904f642f714fa86766f195384d94;ds=sidebyside diff --git a/client/GoodFET.py b/client/GoodFET.py index 1eb8575..3500c62 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -7,6 +7,17 @@ import sys, time, string, cStringIO, struct, glob, serial, os; +def getClient(name="GoodFET"): + import GoodFET, GoodFETCC, GoodFETAVR, GoodFETSPI, GoodFETMSP430; + if(name=="GoodFET" or name=="monitor"): return GoodFET.GoodFET(); + elif name=="cc" or name=="chipcon": return GoodFETCC.GoodFETCC(); + elif name=="avr": return GoodFETAVR.GoodFETAVR(); + elif name=="spi": return GoodFETSPI.GoodFETSPI(); + elif name=="msp430": return GoodFETSPI.GoodFETMSP430(); + + print "Unsupported target: %s" % name; + sys.exit(0); + class GoodFET: """GoodFET Client Library""" @@ -15,6 +26,11 @@ class GoodFET: def __init__(self, *args, **kargs): self.data=[0]; + + + def getConsole(self): + from GoodFETConsole import GoodFETConsole; + return GoodFETConsole(self); def timeout(self): print "timeout\n"; def serInit(self, port=None): @@ -109,6 +125,7 @@ class GoodFET: #Debugging string; print, but wait. if self.app==0xFF and self.verb==0xFF: print "# DEBUG %s" % self.serialport.read(self.count); + sys.stdout.flush(); else: self.data=self.serialport.read(self.count); return self.data; @@ -253,21 +270,39 @@ class GoodFET: print "Self-test complete."; + # The following functions ought to be implemented in + # every client. - def I2Csetup(self): - """Move the FET into the I2C application.""" - self.writecmd(0x02,0x10,0,self.data); #SPI/SETUP - def I2Cstart(self): - """Start an I2C transaction.""" - self.writecmd(0x02,0x20,0,self.data); #SPI/SETUP - def I2Cstop(self): - """Stop an I2C transaction.""" - self.writecmd(0x02,0x21,0,self.data); #SPI/SETUP - def I2Cread(self,len=1): - """Read len bytes by I2C.""" - self.writecmd(0x02,0x00,1,[len]); #SPI/SETUP - return self.data; - def I2Cwrite(self,bytes): - """Write bytes by I2C.""" - self.writecmd(0x02,0x01,len(bytes),bytes); #SPI/SETUP - return ord(self.data[0]); + def infostring(self): + a=self.peekbyte(0xff0); + b=self.peekbyte(0xff1); + return "%02x%02x" % (a,b); + def lock(self): + print "Locking Unsupported."; + def erase(self): + print "Erasure Unsupported."; + def setup(self): + return; + def start(self): + return; + def test(self): + return; + def status(self): + return; + def halt(self): + return; + def resume(self): + return; + def getpc(self): + return 0xdead; + def flash(self,file): + """Flash an intel hex file to code memory.""" + print "Flash not implemented."; + def peek32(self,address, memory="vn"): + return (self.peek16(address,memory)+ + (self.peek16(address+2,memory)<<16)); + def peek16(self,address, memory="vn"): + return (self.peek8(address,memory)+ + (self.peek8(address+1,memory)<<8)); + def peek8(self,address, memory="vn"): + return 0xde;