diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-04-07 17:01:46 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-04-07 17:01:46 +0000 |
commit | 8f4f48d963d0dd5751298a3a301dcbb32e26082b (patch) | |
tree | 0c46f6a9f8d439a1edb59ae3088d369b914b3450 /LUFA/Platform/UC3 | |
parent | d4b45e8502a27c0f5ad3e26eabd2b30e84c20bac (diff) | |
download | lufa-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/Platform/UC3')
-rw-r--r-- | LUFA/Platform/UC3/Exception.S | 3 | ||||
-rw-r--r-- | LUFA/Platform/UC3/InterruptManagement.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/LUFA/Platform/UC3/Exception.S b/LUFA/Platform/UC3/Exception.S index ddfe00984..50f52bddd 100644 --- a/LUFA/Platform/UC3/Exception.S +++ b/LUFA/Platform/UC3/Exception.S @@ -28,6 +28,7 @@ this software. */ +#if defined(__AVR32__) #include <avr32/io.h> .section .exception_handlers, "ax", @progbits @@ -123,3 +124,5 @@ Autovector_Table: .word ((AVR32_INTC_INT0 + \Level) << AVR32_INTC_IPR_INTLEVEL_OFFSET) | (Exception_INT\Level - EVBA_Table) .endr // === END OF GENERAL INTERRUPT HANDLER OFFSET TABLE === + +#endif diff --git a/LUFA/Platform/UC3/InterruptManagement.c b/LUFA/Platform/UC3/InterruptManagement.c index 7d883c639..b4fd19842 100644 --- a/LUFA/Platform/UC3/InterruptManagement.c +++ b/LUFA/Platform/UC3/InterruptManagement.c @@ -28,6 +28,9 @@ this software. */ +#include "../../Common/Common.h" +#if (ARCH == ARCH_UC3) + #define __INCLUDE_FROM_INTMANAGEMENT_C #include "InterruptManagement.h" @@ -62,3 +65,4 @@ void INTC_Init(void) __builtin_mtsr(AVR32_EVBA, (uintptr_t)&EVBA_Table); } +#endif |