mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-04 13:14:32 +02:00
Merge branch 'bugfix/serial_reader_linux_writes_correctly_5.0' into 'release/v5.0'
bugfix(tools): idf.py monitor now reads correctly on Linux (backport 5.0) See merge request espressif/esp-idf!21270
This commit is contained in:
@@ -277,6 +277,7 @@ class LinuxMonitor(Monitor):
|
|||||||
|
|
||||||
def serial_write(self, *args: str, **kwargs: str) -> None:
|
def serial_write(self, *args: str, **kwargs: str) -> None:
|
||||||
self.serial.stdin.write(*args, **kwargs)
|
self.serial.stdin.write(*args, **kwargs)
|
||||||
|
self.serial.stdin.flush()
|
||||||
|
|
||||||
def check_gdb_stub_and_run(self, line: bytes) -> None:
|
def check_gdb_stub_and_run(self, line: bytes) -> None:
|
||||||
return # fake function for linux target
|
return # fake function for linux target
|
||||||
|
Reference in New Issue
Block a user