Skip to content

Commit 6b707db

Browse files
authored
Fix small typo in Linux setup
My device has identical `idProduct` and `idVendor` values to the one used for the documentation. `lsusb | grep STM` outputs: ``` Bus 003 Device 033: ID 0483:374b STMicroelectronics ST-LINK/V2.1 ``` The verbose version, `lsusb -v`, outputs ``` ... idVendor 0x0483 STMicroelectronics idProduct 0x374b ST-LINK/V2.1 ... ``` Which leads me to the belief that the first value in the short output is the vendor and the latter is the product.
1 parent e191b36 commit 6b707db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/03-setup/linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ It should result in something like:
136136
$ lsusb | grep ST-LINK
137137
Bus 003 Device 003: ID 0483:374b STMicroelectronics ST-LINK/V2.1
138138
```
139-
So the `idProduct` is `0483` and `idVendor` is `374b`.
139+
So the `idVendor` is `0483` and `idProduct` is `374b`.
140140

141141
### Create `/etc/udev/rules.d/99-openocd.rules`:
142142
``` console

0 commit comments

Comments
 (0)