aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-04-07 17:01:46 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-04-07 17:01:46 +0000
commit8f4f48d963d0dd5751298a3a301dcbb32e26082b (patch)
tree0c46f6a9f8d439a1edb59ae3088d369b914b3450 /LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
parentd4b45e8502a27c0f5ad3e26eabd2b30e84c20bac (diff)
downloadlufa-8f4f48d963d0dd5751298a3a301dcbb32e26082b.tar.gz
lufa-8f4f48d963d0dd5751298a3a301dcbb32e26082b.tar.bz2
lufa-8f4f48d963d0dd5751298a3a301dcbb32e26082b.zip
Add architecture guards to all architecture-specific files, so that they can be bulk-added to existing IDE projects without having to exclude unused architecture files.
Diffstat (limited to 'LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c')
-rw-r--r--LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
index 3ad806db4..fc1b18a2e 100644
--- a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
+++ b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c
@@ -28,6 +28,9 @@
this software.
*/
+#include "../../../../Common/Common.h"
+#if (ARCH == ARCH_UC3)
+
#define __INCLUDE_FROM_USB_DRIVER
#include "../USBMode.h"
@@ -173,3 +176,4 @@ uint8_t Endpoint_WaitUntilReady(void)
#endif
+#endif