# HG changeset patch # User drewp@bigasterisk.com # Date 2009-06-13 21:21:15 # Node ID b8012dcb714b88a14d2376b988986070eb4c00dd # Parent 8707b063876bf4cbbcba5800d04d8043a0a07175 increase curvecalc update frequency 50ms to 20ms Ignore-this: 15b3ef4d685a0cb8ddba3cca384438c2 diff --git a/bin/curvecalc b/bin/curvecalc --- a/bin/curvecalc +++ b/bin/curvecalc @@ -252,7 +252,7 @@ class Output: if self.later and not self.later.cancelled and not self.later.called: self.later.cancel() - self.later = reactor.callLater(.05, self.update) + self.later = reactor.callLater(.02, self.update) self.recent_t = self.recent_t[-50:]+[t] period = (self.recent_t[-1] - self.recent_t[0]) / len(self.recent_t)