embedded-trainings-2020/embedded-workshop-book/src/supporting-standard-requests.md

22 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2020-07-13 11:48:24 +00:00
# USB-4: Supporting more Standard Requests
After responding to the `GET_DESCRIPTOR Device` request the host will start sending different requests.
2020-07-15 16:53:31 +00:00
✅ Update the parser in `common/usb` so that it can handle the following requests:
2020-07-13 11:48:24 +00:00
1. `GET_DESCRIPTOR Configuration`, see the section on [Handling GET_DESCRIPTOR Configuration Requests](./get-descriptor-config.md#handling-get_descriptor-configuration-requests)
2. `SET_CONFIGURATION`, see the section on [SET_CONFIGURATION](./getting-device-configured.md#set_configuration) of this course material
2020-07-13 11:48:24 +00:00
The starter `common/usb` code contains unit tests for these other requests as well as extra `Request` variants for these requests. All of them have been commented out using a `#[cfg(TODO)]` attribute which you can remove once you need any new variant or new unit test.
2020-07-15 16:53:31 +00:00
✅ For each green test, extend `usb-4.rs` to handle the new requests your parser is now able to recognize. **Make sure to read the next sections as you're working**, since they contain explanations about the concepts used and needed to complete this task.
2020-07-13 11:48:24 +00:00
❗️ Keep the cable connected to the J3 port for the rest of the workshop
2020-07-13 11:48:24 +00:00
If you need a reference, you can find solutions to parsing `GET_DESCRIPTOR Configuration` and `SET_CONFIGURATION` requests in the following files:
- `advanced/common/usb/solution-get-descriptor-configuration.rs`
- `advanced/common/usb/solution-set-configuration.rs`
2020-07-13 11:48:24 +00:00
Each file contains just enough code to parse the request in its name and the `GET_DESCRIPTOR Device` and `SET_ADDRESS` requests. So you can refer to `solution-get-descriptor-configuration.rs` without getting "spoiled" about how to parse the `SET_CONFIGURATION` request.