Merge branch 'bugfix/windows_10_idf_monitor_redux_v30' into 'release/v3.0'

idf_monitor: Fix Windows 10 bug in cases where second console write also fails (v3.0 backport)

See merge request !1676
This commit is contained in:
Angus Gratton 2017-12-18 06:43:17 +08:00
commit 0ebae99ab0

View file

@ -563,8 +563,11 @@ if os.name == 'nt':
self.output.write(b)
except IOError:
# Windows 10 bug since the Fall Creators Update, sometimes writing to console randomly fails
# (but always succeeds the second time, it seems.) Ref https://github.com/espressif/esp-idf/issues/1136
self.output.write(b)
# (but usually succeeds the second time, it seems.) Ref https://github.com/espressif/esp-idf/issues/1136
try:
self.output.write(b)
except IOError:
pass
self.matched = b''
def flush(self):