From 80c890b7855cb2a88e0b8599fa366b6d76472167 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Tue, 20 Apr 2021 13:36:17 +0200 Subject: [PATCH] changed order of items to be the same as in the code example --- embedded-workshop-book/src/usb-events.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embedded-workshop-book/src/usb-events.md b/embedded-workshop-book/src/usb-events.md index 38c1d92..c9e32c0 100644 --- a/embedded-workshop-book/src/usb-events.md +++ b/embedded-workshop-book/src/usb-events.md @@ -14,10 +14,10 @@ Go to `fn on_event`, line 39. In this section you'll need to implement the follo - `USBRESET`. This event indicates that the host issued a USB reset signal. According to the USB specification this will move the device from any state to the `Default` state. Since we are currently not dealing with any other state, you can handle this state by doing nothing. -- `EP0SETUP`. The USBD peripheral has detected the SETUP stage of a control transfer. If you get to this point move to the next section. - - `EP0DATADONE`. The USBD peripheral is signaling the end of the DATA stage of a control transfer. You won't encounter this event just yet. +- `EP0SETUP`. The USBD peripheral has detected the SETUP stage of a control transfer. If you get to this point move to the next section. + When you are done you should see this output: ``` console