mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-01-25 07:18:08 +00:00
changed order of items to be the same as in the code example
This commit is contained in:
parent
c1932fceb6
commit
80c890b785
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue