From: travisutk Date: Mon, 12 Apr 2010 06:48:58 +0000 (+0000) Subject: Better client error message for Info flash. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=ac805b54c0afd67a51949367b311a855b4aacf90;ds=sidebyside Better client error message for Info flash. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@454 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFET.py b/client/GoodFET.py index 468b091..a2f3160 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -103,7 +103,8 @@ class GoodFET: #time.sleep(1); self.readcmd(); #Read the first command. if(self.verb!=0x7F): - print "Verb %02x is wrong. Incorrect firmware?" % self.verb; + print "Verb %02x is wrong. Incorrect firmware or bad Info guess?" % self.verb; + print "http://goodfet.sf.net/faq/"; #print "Connected." def getbuffer(self,size=0x1c00): writecmd(0,0xC2,[size&0xFF,(size>>16)&0xFF]);