tools: Add exec_raw_no_follow to pyboard.py.

This commit is contained in:
Dave Hylands 2015-05-16 22:48:54 -07:00 committed by Damien George
parent 861670ba2a
commit 97ce883217
1 changed files with 3 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class Pyboard:
# return normal and error output
return data, data_err
def exec_raw(self, command, timeout=10, data_consumer=None):
def exec_raw_no_follow(self, command):
if isinstance(command, bytes):
command_bytes = command
else:
@ -118,6 +118,8 @@ class Pyboard:
if data != b'OK':
raise PyboardError('could not exec command')
def exec_raw(self, command, timeout=10, data_consumer=None):
self.exec_raw_no_follow(command);
return self.follow(timeout, data_consumer)
def eval(self, expression):