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
/
AVR8
/
Host_AVR8.c
diff --git
a/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c
b/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c
index
fd311e3
..
3f27c76
100644
(file)
--- a/
LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c
+++ b/
LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c
@@
-28,6
+28,9
@@
this software.
*/
+#include "../../../../Common/Common.h"
+#if (ARCH == ARCH_AVR8)
+
#define __INCLUDE_FROM_USB_DRIVER
#include "../USBMode.h"
@@
-292,3
+295,4
@@
static void USB_Host_ResetDevice(void)
#endif
+#endif