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/getting-started/probe-setup.mdx
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,14 @@ users without root privileges access to the debug probes as well.
24
24
devices.
25
25
26
26
If you're still unable to access the debug probes after following these steps,
27
-
try adding your user to the plugdev group.
27
+
try adding your user to the plugdev group. This group needs to be a system group
28
+
if you use systemd version higher than v258. In this case you can try the following
29
+
commands to fix the udev rules :
30
+
31
+
```bash
32
+
sudo groupadd --system plugdev
33
+
sudo usermod -a -G plugdev $USER
34
+
```
28
35
29
36
[^1]: The file needs to have an initial number lower than 73, otherwise the udev
30
37
rules do not get applied properly. See
@@ -200,6 +207,7 @@ recommended to configure udev as described in [udev rules](#linux-udev-rules).
200
207
201
208
No driver installation required.
202
209
210
+
Some ESP32 devices have an incorrect WinUSB Descriptor. If ``probe-rs list`` shows your device, but ``probe-rs info`` fails with ``Could not find DeviceInterfaceGUIDs in registry``, you may need to reinstall the driver using Zadig. You can find more information in this GitHub discussion: https://github.com/probe-rs/probe-rs/discussions/3193
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