Fixed reversed signature byte ordering in the CDC bootloader (thanks to Johannes Raschke).
This commit is contained in:
parent
f05224ec46
commit
13935a31b9
4 changed files with 7 additions and 6 deletions
|
@ -150,10 +150,10 @@ void USB_ResetInterface(void)
|
|||
USB_INT_DisableAllInterrupts();
|
||||
USB_INT_ClearAllInterrupts();
|
||||
|
||||
USB_IsConnected = false;
|
||||
USB_IsConnected = false;
|
||||
|
||||
#if defined(USB_CAN_BE_HOST)
|
||||
USB_HostState = HOST_STATE_Unattached;
|
||||
USB_HostState = HOST_STATE_Unattached;
|
||||
#endif
|
||||
|
||||
#if defined(USB_CAN_BE_DEVICE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue