Commit ffb151b3 authored by kliment's avatar kliment

Merge pull request #35 from alexrj/master

Do not try to parse DEBUG_ lines from firmware
parents ae104d53 ec6c5321
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment