X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/f93f73210892cec94a6ca446776879dee64484ed..05fcf7e2a79bebb978d4aeaef26b12f70c6826f8:/LUFA/Drivers/USB/LowLevel/DevChapter9.c diff --git a/LUFA/Drivers/USB/LowLevel/DevChapter9.c b/LUFA/Drivers/USB/LowLevel/DevChapter9.c index 89c4e2998..39b7a62e4 100644 --- a/LUFA/Drivers/USB/LowLevel/DevChapter9.c +++ b/LUFA/Drivers/USB/LowLevel/DevChapter9.c @@ -36,8 +36,14 @@ #include "DevChapter9.h" uint8_t USB_ConfigurationNumber; -bool USB_RemoteWakeupEnabled; + +#if !defined(NO_DEVICE_SELF_POWER) bool USB_CurrentlySelfPowered; +#endif + +#if !defined(NO_DEVICE_REMOTE_WAKEUP) +bool USB_RemoteWakeupEnabled; +#endif void USB_Device_ProcessControlRequest(void) { @@ -129,11 +135,11 @@ static void USB_Device_SetAddress(void) return; } - UDADDR = ((1 << ADDEN) | DeviceAddress); - if (DeviceAddress) USB_DeviceState = DEVICE_STATE_Addressed; + UDADDR = ((1 << ADDEN) | DeviceAddress); + return; } @@ -192,10 +198,7 @@ static void USB_Device_SetConfiguration(void) Endpoint_ClearStatusStage(); - if (USB_ConfigurationNumber) - USB_DeviceState = DEVICE_STATE_Configured; - else - USB_DeviceState = DEVICE_STATE_Addressed; + USB_DeviceState = (USB_ConfigurationNumber) ? DEVICE_STATE_Configured : DEVICE_STATE_Addressed; EVENT_USB_Device_ConfigurationChanged(); } @@ -225,10 +228,10 @@ static void USB_Device_GetInternalSerialDescriptor(void) int16_t UnicodeString[20]; } SignatureDescriptor; - SignatureDescriptor.Header.Size = sizeof(SignatureDescriptor); - SignatureDescriptor.Header.Type = DTYPE_String; + SignatureDescriptor.Header.Type = DTYPE_String; + SignatureDescriptor.Header.Size = sizeof(SignatureDescriptor); - uint8_t SigReadAddress = 0x0E; + uint8_t SigReadAddress = 0x0E; for (uint8_t SerialCharNum = 0; SerialCharNum < 20; SerialCharNum++) { @@ -304,17 +307,22 @@ static void USB_Device_GetStatus(void) switch (USB_ControlRequest.bmRequestType) { +#if !defined(NO_DEVICE_SELF_POWER) || !defined(NO_DEVICE_REMOTE_WAKEUP) case (REQDIR_DEVICETOHOST | REQTYPE_STANDARD | REQREC_DEVICE): + #if !defined(NO_DEVICE_SELF_POWER) if (USB_CurrentlySelfPowered) CurrentStatus |= FEATURE_SELFPOWERED_ENABLED; - + #endif + + #if !defined(NO_DEVICE_REMOTE_WAKEUP) if (USB_RemoteWakeupEnabled) CurrentStatus |= FEATURE_REMOTE_WAKEUP_ENABLED; - + #endif break; +#endif #if !defined(CONTROL_ONLY_DEVICE) case (REQDIR_DEVICETOHOST | REQTYPE_STANDARD | REQREC_ENDPOINT): - Endpoint_SelectEndpoint((uint8_t)USB_ControlRequest.wIndex); + Endpoint_SelectEndpoint(USB_ControlRequest.wIndex & 0xFF); CurrentStatus = Endpoint_IsStalled(); @@ -338,6 +346,7 @@ static void USB_Device_ClearSetFeature(void) { switch (USB_ControlRequest.bmRequestType & CONTROL_REQTYPE_RECIPIENT) { +#if !defined(NO_DEVICE_REMOTE_WAKEUP) case REQREC_DEVICE: if ((uint8_t)USB_ControlRequest.wValue == FEATURE_REMOTE_WAKEUP) USB_RemoteWakeupEnabled = (USB_ControlRequest.bRequest == REQ_SetFeature); @@ -345,6 +354,7 @@ static void USB_Device_ClearSetFeature(void) return; break; +#endif #if !defined(CONTROL_ONLY_DEVICE) case REQREC_ENDPOINT: if ((uint8_t)USB_ControlRequest.wValue == FEATURE_ENDPOINT_HALT) @@ -358,21 +368,23 @@ static void USB_Device_ClearSetFeature(void) if (Endpoint_IsEnabled()) { - if (USB_ControlRequest.bRequest == REQ_ClearFeature) + if (USB_ControlRequest.bRequest == REQ_SetFeature) { - Endpoint_ClearStall(); - Endpoint_ResetFIFO(EndpointIndex); - Endpoint_ResetDataToggle(); + Endpoint_StallTransaction(); } else { - Endpoint_StallTransaction(); - } + Endpoint_ClearStall(); + Endpoint_ResetFIFO(EndpointIndex); + Endpoint_ResetDataToggle(); + } } } break; #endif + default: + return; } Endpoint_SelectEndpoint(ENDPOINT_CONTROLEP);