Unimplemented standard commands now print warnings.
authortravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Sun, 28 Feb 2010 01:59:58 +0000 (01:59 +0000)
committertravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Sun, 28 Feb 2010 01:59:58 +0000 (01:59 +0000)
git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@367 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

client/GoodFET.py

index 3500c62..302e307 100755 (executable)
@@ -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."""