Skip to content

Commit

Permalink
Merge #272
Browse files Browse the repository at this point in the history
272: appendix: add hint about ST-LINK config version r=eldruin a=julianoes

My F3 seemed to come with the stlink-v2 and not the stlink-v2-1 config interface which caused the same "Error: open failed" output.

I suggest to hint to try the older version in that case.

I've also separated Cause and Fix headings because I didn't know how to phrase it otherwise.

Related to rust-embedded/book#263.

Co-authored-by: Julian Oes <julian@oes.ch>
  • Loading branch information
bors[bot] and julianoes authored Oct 26, 2020
2 parents 179402e + bd98caf commit 36c2563
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions src/appendix/1-general-troubleshooting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,29 @@ in procedure 'init'
in procedure 'ocd_bouncer'
```

#### Cause + Fix
#### Cause

The device is not (properly) connected or not the correct ST-LINK interface
configuration is used.

#### Fix

- All: The device is not (properly) connected. Check the USB connection using
`lsusb` or the Device Manager.
- Linux: You may not have enough permission to open the device. Try again with
`sudo`. If that works, you can use [these instructions] to make OpenOCD work
without root privilege.
- Windows: You are probably missing the ST-LINK USB driver. Installation
instructions [here].
Linux:

- Check the USB connection using `lsusb`.
- You may not have enough permission to open the device. Try again with `sudo`.
If that works, you can use [these instructions] to make OpenOCD work without
root privilege.
- You might be using the wrong interface configuration for your ST-LINK.
Try `interface/stlink-v2.cfg` instead of `interface/stlink-v2-1.cfg`.

[these instructions]: ../../03-setup/linux.md#udev-rules

Windows:

- You are probably missing the ST-LINK USB driver. Installation instructions
[here].

[here]: ../../03-setup/windows.md#st-link-usb-driver

### can't connect to OpenOCD - "Polling again in X00ms"
Expand Down

0 comments on commit 36c2563

Please sign in to comment.