convert docs to lowercase and underscores

This commit is contained in:
Jack Humbert 2017-06-10 14:58:55 -04:00
parent ca01d94005
commit 995c3141a6
19 changed files with 1311 additions and 0 deletions

11
docs/usb_hid.md Normal file
View file

@ -0,0 +1,11 @@
# Getting Report Descriptor
```
$ cd /sys/bus/usb/drivers/usbhid
$ ls
1-1.3.4:1.0 1-1.3.4:1.2 bind new_id uevent
1-1.3.4:1.1 1-1.3.4:1.3 module remove_id unbind
$ echo -n 1-1.4\:1.0 | sudo tee unbind
$ sudo lsusb -vvv -d 046d:c01d
$ echo -n 1-1.4\:1.0 | sudo tee bind
```