Minor documentation improvements.
This commit is contained in:
parent
956f9e3709
commit
fc4d3ab400
20 changed files with 38 additions and 38 deletions
|
|
@ -219,7 +219,7 @@ uint8_t USB_Host_WaitMS(uint8_t MS)
|
|||
break;
|
||||
}
|
||||
|
||||
if (Pipe_IsError() == true)
|
||||
if (Pipe_IsError())
|
||||
{
|
||||
Pipe_ClearError();
|
||||
ErrorCode = HOST_WAITERROR_PipeError;
|
||||
|
|
@ -227,7 +227,7 @@ uint8_t USB_Host_WaitMS(uint8_t MS)
|
|||
break;
|
||||
}
|
||||
|
||||
if (Pipe_IsStalled() == true)
|
||||
if (Pipe_IsStalled())
|
||||
{
|
||||
Pipe_ClearStall();
|
||||
ErrorCode = HOST_WAITERROR_SetupStalled;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue