Fixed error receiving PIMA events via the Still Image Host class driver.

This commit is contained in:
Dean Camera 2013-08-23 22:59:58 +02:00
parent 44bc433fb0
commit aded8373cc
3 changed files with 10 additions and 9 deletions

View file

@ -302,7 +302,7 @@ bool SI_Host_IsEventReceived(USB_ClassInfo_SI_Host_t* const SIInterfaceInfo)
Pipe_SelectPipe(SIInterfaceInfo->Config.EventsPipe.Address);
Pipe_Unfreeze();
if (Pipe_BytesInPipe())
if (Pipe_IsINReceived())
IsEventReceived = true;
Pipe_Freeze();