feat(examples): dump coverage over uart

This commit is contained in:
Erhan Kurubas
2025-12-22 23:29:01 +01:00
parent b07e8c6954
commit f1d43df4a1
11 changed files with 1052 additions and 37 deletions
+2
View File
@@ -229,6 +229,8 @@ class OpenOCD:
resp = self.telnet.read_very_eager()
self.telnet.write(to_bytes(s, '\n'))
resp += self.telnet.read_until(b'>', timeout=timeout)
if not resp.endswith(b'>'):
return ''
return to_str(resp)
def apptrace_wait_stop(self, timeout: int = 30) -> None: