diff options
Diffstat (limited to 'Demos/Host/LowLevel/CDCHost/CDCHost.c')
-rw-r--r-- | Demos/Host/LowLevel/CDCHost/CDCHost.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Demos/Host/LowLevel/CDCHost/CDCHost.c b/Demos/Host/LowLevel/CDCHost/CDCHost.c index 0b09c5a93..c4322587e 100644 --- a/Demos/Host/LowLevel/CDCHost/CDCHost.c +++ b/Demos/Host/LowLevel/CDCHost/CDCHost.c @@ -216,8 +216,9 @@ void CDC_Host_Task(void) USB_HostState = HOST_STATE_Configured;
break;
case HOST_STATE_Configured:
- /* Select and the data IN pipe */
+ /* Select the data IN pipe */
Pipe_SelectPipe(CDC_DATAPIPE_IN);
+ Pipe_SetPipeToken(PIPE_TOKEN_IN);
Pipe_Unfreeze();
/* Check to see if a packet has been received */
|