forked from mirror/qmk_firmware
Fixed MassStorage demo not clearing the reset flag when a Mass Storage Reset is issued while not processing a command.
This commit is contained in:
@@ -218,9 +218,6 @@ void MassStorage_Task(void)
|
||||
Endpoint_ClearStall();
|
||||
Endpoint_SelectEndpoint(MASS_STORAGE_IN_EPNUM);
|
||||
Endpoint_ClearStall();
|
||||
|
||||
/* Clear the abort transfer flag */
|
||||
IsMassStoreReset = false;
|
||||
}
|
||||
|
||||
/* Indicate ready */
|
||||
@@ -232,6 +229,9 @@ void MassStorage_Task(void)
|
||||
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
|
||||
}
|
||||
}
|
||||
|
||||
/* Clear the abort transfer flag */
|
||||
IsMassStoreReset = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -90,6 +90,7 @@ static uint8_t MassStore_SendCommand(void)
|
||||
/* Send the data in the OUT pipe to the attached device */
|
||||
Pipe_ClearOUT();
|
||||
|
||||
/* Wait until command has been sent */
|
||||
while(!(Pipe_IsOUTReady()));
|
||||
|
||||
/* Freeze pipe after use */
|
||||
|
||||
Reference in New Issue
Block a user