Skip to content

Commit

Permalink
fix(jtag): gdb write "remotetimeout" stop waiting for response
Browse files Browse the repository at this point in the history
  • Loading branch information
hfudev committed Aug 9, 2024
1 parent 7c976f5 commit fd1f219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest-embedded-serial/pytest_embedded_serial/dut.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ def write(self, data: AnyStr) -> None:

def setup_jtag(self):
if self.gdb:
self.gdb.write('set remotetimeout 10')
self.gdb.write('set remotetimeout 10', non_blocking=True)
self.gdb.write(f'target extended-remote :{self.openocd.gdb_port}')

0 comments on commit fd1f219

Please sign in to comment.