Skip to content
Snippets Groups Projects
Commit 94e0a005 authored by Dean Camera's avatar Dean Camera
Browse files

Oops - restore conditional calls to USB_USBTask() in the Mass Storage class...

Oops - restore conditional calls to USB_USBTask() in the Mass Storage class driver for the non-stream loops.
parent e64f4b0c
No related branches found
No related tags found
No related merge requests found
......@@ -202,6 +202,10 @@ static void MS_Device_ReturnCommandStatus(USB_ClassInfo_MS_Device_t* const MSInt
while (Endpoint_IsStalled())
{
#if !defined(INTERRUPT_CONTROL_ENDPOINT)
USB_USBTask();
#endif
if (MSInterfaceInfo->State.IsMassStoreReset)
return;
}
......@@ -210,6 +214,10 @@ static void MS_Device_ReturnCommandStatus(USB_ClassInfo_MS_Device_t* const MSInt
while (Endpoint_IsStalled())
{
#if !defined(INTERRUPT_CONTROL_ENDPOINT)
USB_USBTask();
#endif
if (MSInterfaceInfo->State.IsMassStoreReset)
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment