Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions qiling/os/mcu/mcu.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@ def on_start(self):
def on_interrupted(self, ucerr: int):
self._begin = self.pc

# And don't restore anything.
# Real silicon would vector to HardFault here; we don't model that, so log and
# request a clean stop instead of raising — otherwise fast-mode timeouts surface
# firmware faults as test errors.
if ucerr != UC_ERR_OK:
raise UcError(ucerr)
self.ql.log.warning(f'fast mode halted: {UcError(ucerr)} at PC=0x{self.pc:08x}')
self._stop_request = True
return

self.ql.hw.step()

Expand Down
Loading