Substantially reduced time required to verify program memory contents.
[goodfet] / client / goodfet.glitch
index 823b8de..1d301a9 100755 (executable)
@@ -19,6 +19,8 @@ if(len(sys.argv)==1):
     print "%s avr explore" % sys.argv[0];
     print "%s avr graph" % sys.argv[0];
     print "%s avr graphx11" % sys.argv[0];
+    print "%s avr points" % sys.argv[0];
+    print "%s avr npoints" % sys.argv[0];
     print """
 This populates a database, glitch.db, with a record of all attempted
 glitches.  Graphs can then be generated from the results, allowing
@@ -41,6 +43,12 @@ if(sys.argv[2]=="graphx11"):
 if(sys.argv[2]=="graph"):
     glitcher.graph();
     exit();
+if(sys.argv[2]=="points"):
+    glitcher.points();
+    exit();
+if(sys.argv[2]=="npoints"):
+    glitcher.npoints();
+    exit();
 
 if(sys.argv[2]=="crunch"):
     glitcher.crunch();