From c61dddffb04278b411028971e6f2a03303646ed9 Mon Sep 17 00:00:00 2001 From: travisutk Date: Sun, 28 Feb 2010 01:59:58 +0000 Subject: [PATCH] Unimplemented standard commands now print warnings. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@367 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- client/GoodFET.py | 7 +++++++ 1 file changed, 7 insertions(+) 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.""" -- 2.20.1