diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-08-13 21:01:42 +0200 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-08-13 21:01:42 +0200 |
commit | ea5851355892fceefc28181c14307c481b30e354 (patch) | |
tree | b38e94ab51692d4d062635755b7ba374acc704b4 /LUFA/Drivers/USB | |
parent | a4a6958524adab55b5306df7c9a5de70b359dfa1 (diff) | |
download | lufa-ea5851355892fceefc28181c14307c481b30e354.tar.gz lufa-ea5851355892fceefc28181c14307c481b30e354.tar.bz2 lufa-ea5851355892fceefc28181c14307c481b30e354.zip |
Fixed re-enumeration issue of XMEGA architecture targets.
Diffstat (limited to 'LUFA/Drivers/USB')
-rw-r--r-- | LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c b/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c index 209bf9491..9651193a3 100644 --- a/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c +++ b/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c @@ -93,7 +93,7 @@ ISR(USB_BUSEVENT_vect) USB_DeviceState = DEVICE_STATE_Default; USB_Device_ConfigurationNumber = 0; - USB_Device_SetDeviceAddress(0); + USB_Device_EnableDeviceAddress(0); Endpoint_ClearEndpoints(); Endpoint_ConfigureEndpoint(ENDPOINT_CONTROLEP, EP_TYPE_CONTROL, |