Revert incorrect XMEGA interrupt disable patch; all flags *except* the interrupt...
authorDean Camera <dean@fourwalledcubicle.com>
Sun, 5 May 2013 14:09:26 +0000 (14:09 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Sun, 5 May 2013 14:09:26 +0000 (14:09 +0000)
LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c

index 51f35a6..b85f301 100644 (file)
@@ -36,7 +36,7 @@
 
 void USB_INT_DisableAllInterrupts(void)
 {
-       USB.INTCTRLA    &= ~USB_INTLVL_gm;
+       USB.INTCTRLA    &= USB_INTLVL_gm;
        USB.INTCTRLB     = 0;
 }