Merge pull request #35 from alexrj/master

Do not try to parse DEBUG_ lines from firmware
master
kliment 2011-07-12 03:39:23 -07:00
commit ffb151b3f5
1 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,8 @@ class printcore():
pass
if self.loud:
print "RECV: ",line.rstrip()
if(line.startswith('DEBUG_')):
continue
if(line.startswith('start') or line.startswith('ok')):
self.clear=True
if(line.startswith('start') or line.startswith('ok') or "T:" in line):