X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/32086e4f1455f8b595f7b3817699eb8659b50553..84c3c4a3d90e7f890c61d4640c2d65a469b42b79:/LUFA/Drivers/USB/LowLevel/DevChapter9.c?ds=sidebyside diff --git a/LUFA/Drivers/USB/LowLevel/DevChapter9.c b/LUFA/Drivers/USB/LowLevel/DevChapter9.c index 10dce7298..8de4bd6a8 100644 --- a/LUFA/Drivers/USB/LowLevel/DevChapter9.c +++ b/LUFA/Drivers/USB/LowLevel/DevChapter9.c @@ -117,13 +117,22 @@ void USB_Device_ProcessControlPacket(void) static void USB_Device_SetAddress(void) { + uint8_t DeviceAddress = (USB_ControlRequest.wValue & 0x7F); + Endpoint_ClearSETUP(); Endpoint_ClearIN(); - while (!(Endpoint_IsINReady())); + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + + UDADDR = ((1 << ADDEN) | DeviceAddress); - UDADDR = ((1 << ADDEN) | ((uint8_t)USB_ControlRequest.wValue & 0x7F)); + if (DeviceAddress) + USB_DeviceState = DEVICE_STATE_Addressed; return; } @@ -185,8 +194,17 @@ static void USB_Device_SetConfiguration(void) Endpoint_ClearIN(); - if (!(AlreadyConfigured) && USB_ConfigurationNumber) - EVENT_USB_DeviceEnumerationComplete(); + if (USB_ConfigurationNumber) + { + USB_DeviceState = DEVICE_STATE_Configured; + + if (!(AlreadyConfigured)) + EVENT_USB_DeviceEnumerationComplete(); + } + else + { + USB_DeviceState = DEVICE_STATE_Addressed; + } EVENT_USB_ConfigurationChanged(); } @@ -199,7 +217,12 @@ void USB_Device_GetConfiguration(void) Endpoint_ClearIN(); - while (!(Endpoint_IsOUTReceived())); + while (!(Endpoint_IsOUTReceived())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + Endpoint_ClearOUT(); } @@ -332,7 +355,12 @@ static void USB_Device_GetStatus(void) Endpoint_ClearIN(); - while (!(Endpoint_IsOUTReceived())); + while (!(Endpoint_IsOUTReceived())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + Endpoint_ClearOUT(); }