Skip to content
Snippets Groups Projects
Commit 1e1cf2c4 authored by Dean Camera's avatar Dean Camera
Browse files

Fix CDC blocking streams in Host mode locking up when the device is removed.

parent 71e5bcee
No related branches found
No related tags found
No related merge requests found
......@@ -445,6 +445,9 @@ static int CDC_Host_getchar_Blocking(FILE* Stream)
{
while (!(CDC_Host_BytesReceived((USB_ClassInfo_CDC_Host_t*)fdev_get_udata(Stream))))
{
if (USB_HostState == HOST_STATE_Unattached)
return _FDEV_EOF;
CDC_Host_USBTask((USB_ClassInfo_CDC_Host_t*)fdev_get_udata(Stream));
USB_USBTask();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment