You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/library/basics.mdx
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ let probe = probes[0].open()?;
29
29
Now you can access all the functionality a probe can offer. Not all probes offer the same functionality, which is why some calls may return a negative `Result`.
30
30
31
31
```rs
32
+
32
33
// Perform a hard reset of the connected target via the probe.
33
34
probe.target_reset()?;
34
35
@@ -67,7 +68,7 @@ In the previous sections we have learned how we attach to a core.
67
68
Sometimes you want to access the core operations in quick fashion.
68
69
This is what [Session::auto_attach()](https://docs.rs/probe-rs/*/probe_rs/struct.Session.html#method.auto_attach) is for.
69
70
It lets you attach to the Core without first opening a Probe.
70
-
It will try to open a connected prbe, and select the Core as best as it can
71
+
It will try to open a connected probe, and select the Core as best as it can
0 commit comments