mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-04 06:33:03 +00:00
Fixed incorrect/missing control status stage transfers on demos, bootloaders and applications (thanks to Nate Lawson).
This commit is contained in:
@@ -167,6 +167,7 @@ EVENT_HANDLER(USB_UnhandledControlPacket)
|
||||
|
||||
Endpoint_ClearSetupIN();
|
||||
|
||||
/* Acknowledge status stage */
|
||||
while (!(Endpoint_IsSetupOUTReceived()));
|
||||
Endpoint_ClearSetupOUT();
|
||||
}
|
||||
@@ -184,6 +185,7 @@ EVENT_HANDLER(USB_UnhandledControlPacket)
|
||||
|
||||
Endpoint_ClearSetupOUT();
|
||||
|
||||
/* Acknowledge status stage */
|
||||
while (!(Endpoint_IsSetupINReady()));
|
||||
Endpoint_ClearSetupIN();
|
||||
}
|
||||
@@ -194,6 +196,7 @@ EVENT_HANDLER(USB_UnhandledControlPacket)
|
||||
{
|
||||
Endpoint_ClearSetupReceived();
|
||||
|
||||
/* Acknowledge status stage */
|
||||
while (!(Endpoint_IsSetupINReady()));
|
||||
Endpoint_ClearSetupIN();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user