Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix JLink SPI Dumping Tool #999

Merged
merged 1 commit into from
Jan 5, 2021
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions transport_plugins/jlink/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All major changes in each released version of the jlink transport plugin are
listed here.

## 1.1.2

- Halt the device before injecting flash forensics blob

## 1.1.1

- Add placeholder support for heartbeat debug command.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ async def debug_read_memory(self, device_info, _control_info, args):
if memory_region == 'external':
if pause is False:
raise ArgumentError("Pause must be True in order to read external data.")
await self.reset()
await self.reset(halt=True)
await self._inject_blob(ff_cfg.ff_absolute_bin_path)

pc_reg = await self._loop.run_in_executor(
Expand Down
2 changes: 1 addition & 1 deletion transport_plugins/jlink/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.1.1"
version = "1.1.2"