aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-07-15 08:10:51 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-07-15 08:10:51 +0000
commitf07e766755b2489c76f0f353b7fe2d4a11300e61 (patch)
tree95f6050361cbfa3ecdca0d5926f7c8201b98ca64 /LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h
parentffa8b430c1886b696e1e94039e6a9343b5b81dbd (diff)
downloadlufa-f07e766755b2489c76f0f353b7fe2d4a11300e61.tar.gz
lufa-f07e766755b2489c76f0f353b7fe2d4a11300e61.tar.bz2
lufa-f07e766755b2489c76f0f353b7fe2d4a11300e61.zip
Complete USB XMEGA interrupt control subsystem code in the core USB driver.
Automatically load in the USB calibration bytes from the User Signature Row on start-up. Create internal SRAM variable for the endpoint control and status register table, used by the XMEGA USB controller hardware.
Diffstat (limited to 'LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h')
-rw-r--r--LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h b/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h
index f5adc1200..45cfe5977 100644
--- a/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h
+++ b/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h
@@ -55,6 +55,13 @@
#include "../USBTask.h"
#include "../USBInterrupt.h"
+ /* Private Interface - For use in library only: */
+ #if !defined(__DOXYGEN__)
+ /* External Variables: */
+ extern USB_EP_TABLE_t USB_EndpointTable;
+ #endif
+
+ /* Includes: */
#if defined(USB_CAN_BE_DEVICE) || defined(__DOXYGEN__)
#include "../Device.h"
#include "../Endpoint.h"