X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2Fgoodfet.glitch;h=1d301a9117c9c2cc72787102085ad83c78947256;hp=823b8de85c41d0223f6d923192569e7a4cee8208;hb=a2de4ca441a02031e56fc8d14f8a476c644049e0;hpb=8ae30e6291cb4a6d67833eaa3ac23f9081f3e99a diff --git a/client/goodfet.glitch b/client/goodfet.glitch index 823b8de..1d301a9 100755 --- a/client/goodfet.glitch +++ b/client/goodfet.glitch @@ -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();