mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-01-10 08:15:36 +00:00
Merge pull request #158 from ferrous-systems/high-bit-byte
fix typo: high bit-> byte
This commit is contained in:
commit
41c6381311
1 changed files with 2 additions and 2 deletions
|
@ -8,9 +8,9 @@ As a reminder, all GET_DESCRIPTOR request types are share the following properti
|
|||
- `bRequest` is **6** (i.e. the GET_DESCRIPTOR Request Code, defined in table 9-4 of the [USB specification][usb_spec])
|
||||
|
||||
|
||||
A GET_DESCRIPTOR *Configuration* request is determined the high bit of its `wValue` field:
|
||||
A GET_DESCRIPTOR *Configuration* request is determined the high byte of its `wValue` field:
|
||||
|
||||
- The high bit of `wValue` is **2** (i.e. the `CONFIGURATION` descriptor type, defined in table 9-5 of the [USB specification][usb_spec])
|
||||
- The high byte of `wValue` is **2** (i.e. the `CONFIGURATION` descriptor type, defined in table 9-5 of the [USB specification][usb_spec])
|
||||
|
||||
[usb_spec]: https://www.usb.org/document-library/usb-20-specification
|
||||
|
||||
|
|
Loading…
Reference in a new issue