The Win32 gfbsl.exe now properly identifies serial ports automatically.
[goodfet] / client / GoodFET.py
index 7e32773..579eff0 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,
@@ -277,6 +277,9 @@ class GoodFET:
     def peekword(self,address):
         """Read a word of memory from the monitor."""
         return self.peekbyte(address)+(self.peekbyte(address+1)<<8);
+    def peek(self,address):
+        """Read a word of memory from the monitor."""
+        return self.peekbyte(address)+(self.peekbyte(address+1)<<8);
     def pokebyte(self,address,value):
         """Set a byte of memory by the monitor."""
         self.data=[address&0xff,address>>8,value];