From: travisutk Date: Sun, 28 Feb 2010 01:59:58 +0000 (+0000) Subject: Unimplemented standard commands now print warnings. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=c61dddffb04278b411028971e6f2a03303646ed9 Unimplemented standard commands now print warnings. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@367 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFET.py b/client/GoodFET.py index 3500c62..302e307 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -282,18 +282,25 @@ class GoodFET: def erase(self): print "Erasure Unsupported."; def setup(self): + print "Unimplemented."; return; def start(self): + print "Unimplemented."; return; def test(self): + print "Unimplemented."; return; def status(self): + print "Unimplemented."; return; def halt(self): + print "Unimplemented."; return; def resume(self): + print "Unimplemented."; return; def getpc(self): + print "Unimplemented."; return 0xdead; def flash(self,file): """Flash an intel hex file to code memory."""