forked from mfulz_github/qmk_firmware
Fix memory corruption in Host mode Mass Storage Class driver.
This commit is contained in:
parent
cd2dcc9163
commit
754ea083d4
|
@ -98,7 +98,7 @@ int main(void)
|
|||
break;
|
||||
}
|
||||
|
||||
printf("Mouse Enumerated.\r\n");
|
||||
printf("Mass Storage Device Enumerated.\r\n");
|
||||
USB_HostState = HOST_STATE_Configured;
|
||||
break;
|
||||
case HOST_STATE_Configured:
|
||||
|
|
|
@ -14,5 +14,5 @@
|
|||
# code.
|
||||
|
||||
%:
|
||||
#make -C ClassDriver/ $@ -- TODO: Re-enable once Host Mode class drivers complete
|
||||
@echo TODO: Re-enable building of Host mode Class Driver demos once complete
|
||||
make -C LowLevel/ $@
|
||||
|
|
|
@ -242,7 +242,7 @@ static uint8_t MS_Host_SendReceiveData(USB_ClassInfo_MS_Host_t* MSInterfaceInfo,
|
|||
}
|
||||
|
||||
static uint8_t MS_Host_GetReturnedStatus(USB_ClassInfo_MS_Host_t* MSInterfaceInfo,
|
||||
MS_CommandStatusWrapper_t* SCSICommandStatus)
|
||||
MS_CommandStatusWrapper_t* SCSICommandStatus)
|
||||
{
|
||||
uint8_t ErrorCode = PIPE_RWSTREAM_NoError;
|
||||
|
||||
|
@ -252,7 +252,7 @@ static uint8_t MS_Host_GetReturnedStatus(USB_ClassInfo_MS_Host_t* MSInterfaceInf
|
|||
Pipe_SelectPipe(MSInterfaceInfo->Config.DataINPipeNumber);
|
||||
Pipe_Unfreeze();
|
||||
|
||||
if ((ErrorCode = Pipe_Read_Stream_LE(&SCSICommandStatus, sizeof(MS_CommandStatusWrapper_t))) != PIPE_RWSTREAM_NoError)
|
||||
if ((ErrorCode = Pipe_Read_Stream_LE(SCSICommandStatus, sizeof(MS_CommandStatusWrapper_t))) != PIPE_RWSTREAM_NoError)
|
||||
return ErrorCode;
|
||||
|
||||
Pipe_ClearIN();
|
||||
|
|
Loading…
Reference in New Issue