projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add architecture guards to all architecture-specific files, so that they can be bulk...
[pub/USBasp.git]
/
LUFA
/
Drivers
/
USB
/
Core
/
UC3
/
USBInterrupt_UC3.c
diff --git
a/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c
b/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c
index
a62646a
..
d411a93
100644
(file)
--- a/
LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c
+++ b/
LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c
@@
-28,6
+28,9
@@
this software.
*/
+#include "../../../../Common/Common.h"
+#if (ARCH == ARCH_UC3)
+
#define __INCLUDE_FROM_USB_DRIVER
#include "../USBInterrupt.h"
@@
-223,3
+226,4
@@
ISR(USB_COM_vect)
}
#endif
+#endif