From: travisutk Date: Sun, 14 Mar 2010 03:31:52 +0000 (+0000) Subject: Index of glitches(time) in glitching databases. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=a7eacc6432e6be392bad9e53248a5b505fefd29e;hp=21a45c7938c021cfaee254dedb5c16ea37806f6e Index of glitches(time) in glitching databases. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@410 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFETGlitch.py b/client/GoodFETGlitch.py index ac0d8f6..b85c568 100644 --- a/client/GoodFETGlitch.py +++ b/client/GoodFETGlitch.py @@ -30,6 +30,7 @@ class GoodFETGlitch(GoodFET): self.db=sqlite3.connect("glitch.db",30000); self.db.execute("create table if not exists glitches(time,vcc,gnd,trials,glitchcount,count,lock)"); self.db.execute("create index if not exists glitchvcc on glitches(vcc);"); + self.db.execute("create index if not exists glitchtime on glitches(time);"); self.client=0; def setup(self,arch="avr"): self.client=getClient(arch);