goodfet.msp430 selftest is working!
[goodfet] / client / GoodFET.py
index b9c35e3..ab6ac30 100755 (executable)
@@ -96,7 +96,7 @@ class GoodFET:
                 if hwid.index('FTDI')==0:
                     port=comport;
                     #print "Using FTDI port %s" % port
-                    
+        
         
         self.serialport = serial.Serial(
             port,
@@ -195,6 +195,10 @@ class GoodFET:
                         print "# DEBUG %s" % self.serialport.read(self.count)
                            elif self.verb==0xFE:
                         print "# DEBUG 0x%x" % struct.unpack(fmt[self.count-1], self.serialport.read(self.count))[0]
+                    elif self.verb==0xFD:
+                        #Do nothing, just wait so there's no timeout.
+                        print "# NOP.";
+                        
                     sys.stdout.flush();
                 else:
                     self.data=self.serialport.read(self.count);