X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2Fgoodfet.glitch;h=1d301a9117c9c2cc72787102085ad83c78947256;hp=c1b0ceaf4395204231dc3ab1913268b17120e809;hb=dd259c9289deb11e84be93647c144192e5ba10b6;hpb=cac3f7817e7022215ab8fdb91daa70bfeddae089 diff --git a/client/goodfet.glitch b/client/goodfet.glitch index c1b0cea..1d301a9 100755 --- a/client/goodfet.glitch +++ b/client/goodfet.glitch @@ -20,6 +20,7 @@ if(len(sys.argv)==1): 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 @@ -45,6 +46,9 @@ if(sys.argv[2]=="graph"): if(sys.argv[2]=="points"): glitcher.points(); exit(); +if(sys.argv[2]=="npoints"): + glitcher.npoints(); + exit(); if(sys.argv[2]=="crunch"): glitcher.crunch();