From 5624ba725aa3758ad9bf61c812d5a6d4f5fdc66d Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Fri, 23 Apr 2021 18:48:23 +0200 Subject: [PATCH] fix typo: high bit-> byte --- embedded-workshop-book/src/get-descriptor-config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embedded-workshop-book/src/get-descriptor-config.md b/embedded-workshop-book/src/get-descriptor-config.md index d20c453..fd718b9 100644 --- a/embedded-workshop-book/src/get-descriptor-config.md +++ b/embedded-workshop-book/src/get-descriptor-config.md @@ -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