mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-11 04:57:38 +00:00
Merge branch 'feature/idf_monitor_debug_ws' into 'master'
tools/idf_monitor: add WebSocket client for IDE integration Closes IDF-1719 See merge request espressif/esp-idf!9032
This commit is contained in:
@@ -27,7 +27,7 @@ class CustomProcess(object):
|
||||
self.f = open(logfile, 'w')
|
||||
if self.verbose:
|
||||
Utility.console_log('Starting {} > {}'.format(cmd, self.f.name))
|
||||
self.pexpect_proc = pexpect.spawn(cmd, timeout=60, logfile=self.f, encoding='utf-8')
|
||||
self.pexpect_proc = pexpect.spawn(cmd, timeout=60, logfile=self.f, encoding='utf-8', codec_errors='ignore')
|
||||
|
||||
def __enter__(self):
|
||||
return self
|
||||
|
Reference in New Issue
Block a user