embedded-trainings-2020/embedded-workshop-book/src/listing-usb-devices.md

26 lines
899 B
Markdown
Raw Normal View History

2020-07-13 11:48:24 +00:00
# Listing USB Devices
2020-07-15 14:28:37 +00:00
In the `tools` folder you'll find `usb-list`: a minimal cross-platform version of the `lsusb` tool.
✅ To list all USB devices, run the progam using `cargo run` from `tools/usb-list`.
2020-07-13 11:48:24 +00:00
``` console
$ cargo run
Bus 002 Device 001: ID 1d6b:0003
Bus 001 Device 002: ID 0cf3:e300
Bus 001 Device 003: ID 0c45:6713
Bus 001 Device 001: ID 1d6b:0002
```
The goal of this exercise is to get the nRF52840 SoC to show in this list. The embedded application will use the vendor ID (VID) and product ID (PID) defined in `advanced/common/consts`; the `usb-list` tool will highlight the USB device that matches that VID PID pair.
2020-07-13 11:48:24 +00:00
``` console
$ # expected output
$ cargo run
Bus 002 Device 001: ID 1d6b:0003
Bus 001 Device 002: ID 0cf3:e300
Bus 001 Device 003: ID 0c45:6713
Bus 001 Device 001: ID 1d6b:0002
Bus 001 Device 059: ID 2020:0717 <- nRF52840 on the nRF52840 Development Kit
```