Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
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
2 changes: 2 additions & 0 deletions packages/jumpstarter-driver-probe-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export:
chip: "RP2350"
protocol: "swd"
connect_under_reset: false
speed: 4000
```

### Config parameters
Expand All @@ -35,6 +36,7 @@ export:
| chip | The target chip | str | no | |
| protocol | The target protocol | "swd" or "jtag" | no | |
| connect_under_reset | Connect to the target while asserting reset | bool | no | false |
| speed | Connection speed in kHz | int | no | |
Comment thread
coderabbitai[bot] marked this conversation as resolved.

## API Reference

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ export:
config:
probe_rs_path: /home/majopela/.cargo/bin/probe-rs
protocol: "swd"
speed: 4000

Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class ProbeRs(Driver):
chip: str | None = None
protocol: str | None = None
connect_under_reset: bool = False
speed: int | None = None

def __post_init__(self):
if hasattr(super(), "__post_init__"):
Expand Down Expand Up @@ -83,6 +84,8 @@ def env_from_cfg(self):
env["PROBE_RS_PROTOCOL"] = self.protocol
if self.connect_under_reset:
env["PROBE_RS_CONNECT_UNDER_RESET"] = "true"
if self.speed:
env["PROBE_RS_SPEED"] = str(self.speed)
return env


Expand Down
Loading