tools/pyboard.py: Fix parsing of returned error so last chr is not lost.
This commit is contained in:
parent
3900fed849
commit
9de53bf788
@ -104,7 +104,7 @@ class Pyboard:
|
|||||||
data_err = self.read_until(1, b'\x04', timeout=timeout)
|
data_err = self.read_until(1, b'\x04', timeout=timeout)
|
||||||
if not data_err.endswith(b'\x04'):
|
if not data_err.endswith(b'\x04'):
|
||||||
raise PyboardError('timeout waiting for second EOF reception')
|
raise PyboardError('timeout waiting for second EOF reception')
|
||||||
data_err = data_err[:-2]
|
data_err = data_err[:-1]
|
||||||
|
|
||||||
# return normal and error output
|
# return normal and error output
|
||||||
return data, data_err
|
return data, data_err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user