X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;ds=sidebyside;f=client%2FGoodFET.py;h=4aec90b53142bf54b670ea6ebc9bb0ae786ad459;hb=586e50d09b9c31458248b524b4618a2baf898e19;hp=98c2494f43a5b19598ba6a35bdbf31b0a6e41f31;hpb=d275b26024122967b01e4a6cfb02e53ab7c1371b;p=goodfet diff --git a/client/GoodFET.py b/client/GoodFET.py index 98c2494..4aec90b 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -150,6 +150,7 @@ class GoodFET: break; if self.verbose: print "Connected after %02i attempts." % attempts; self.mon_connected(); + self.serialport.setTimeout(12); def telosSetSCL(self, level): self.serialport.setRTS(not level) def telosSetSDA(self, level): @@ -478,6 +479,30 @@ class GoodFET: if self.verbose: print "Comm error recognized by monitorecho()."; return 0; return 1; + + def monitor_info(self): + print "GoodFET with %s MCU" % self.infostring(); + print "Clocked at %s" % self.monitorclocking(); + return 1; + + def monitor_list_apps(self, full=False): + self.monitor_info() + old_value = self.besilent + self.besilent = True # turn off automatic call to readcmd + self.writecmd(self.MONITORAPP, 0x82, 1, [int(full)]); + self.besilent = old_value + + # read the build date string + self.readcmd() + print "Build Date: %s" % self.data + print "Firmware apps:" + while True: + self.readcmd() + if self.count == 0: + break + print self.data + return 1; + def monitorclocking(self): """Return the 16-bit clocking value.""" return "0x%04x" % self.monitorgetclock();