mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2024-11-10 10:49:34 +00:00
939 B
939 B
Handling GET_DESCRIPTOR Configuration Requests
When the host issues a GET_DESCRIPTOR Configuration request the device needs to respond with the requested configuration descriptor plus all the interface and endpoint descriptors associated to that configuration descriptor during the DATA stage.
As a reminder, all GET_DESCRIPTOR request types are share the following properties:
bmRequestType
is 0b10000000bRequest
is 6 (i.e. the GET_DESCRIPTOR Request Code, defined in table 9-4 of the USB specification)
A GET_DESCRIPTOR Configuration request is determined the high bit of its wValue
field:
- The high bit of
wValue
is 2 (i.e. theCONFIGURATION
descriptor type, defined in table 9-5 of the USB specification)
In the next sections, let's look into all the concepts required to respond to this request.