X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFET.py;h=74974975d4f308cc2fc8ddc919c39da6092309e1;hp=18a3eb1a952ec1a6eb73707ef1e9d184438875aa;hb=78f4f21969789bec27a8e2957eb00a87d8756041;hpb=f110fe63257686b9fcac78824d61ec429c2a5226 diff --git a/client/GoodFET.py b/client/GoodFET.py index 18a3eb1..7497497 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -55,7 +55,9 @@ class GoodFET: self.serialport.write(chr(app)); self.serialport.write(chr(verb)); - + + #print "TX %02x %02x" % (app,verb); + #little endian 16-bit length self.serialport.write(chr(count&0xFF)); self.serialport.write(chr(count>>8)); @@ -64,11 +66,6 @@ class GoodFET: if count!=0: for d in data: self.serialport.write(chr(d)); - - #self.serialport.flushOutput(); - #self.serialport.flushInput(); - - if not self.besilent: self.readcmd();