diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-03-13 21:53:19 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-03-13 21:53:19 +0000 |
commit | 944e0d2009832f152006031f1aeb99f3ed014bc5 (patch) | |
tree | b3b091beaf6b8da29840f4c614761537f28c9b07 /LUFA/Common | |
parent | 6005a42150bf4d713fd962498bde8b540fef4035 (diff) | |
download | lufa-944e0d2009832f152006031f1aeb99f3ed014bc5.tar.gz lufa-944e0d2009832f152006031f1aeb99f3ed014bc5.tar.bz2 lufa-944e0d2009832f152006031f1aeb99f3ed014bc5.zip |
Rename UC3B driver files to UC3, as they are generic to all AVR32 UC3 models.
Diffstat (limited to 'LUFA/Common')
-rw-r--r-- | LUFA/Common/Architectures.h | 4 | ||||
-rw-r--r-- | LUFA/Common/Common.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Common/Architectures.h b/LUFA/Common/Architectures.h index d34ad8cb8..30d8c8249 100644 --- a/LUFA/Common/Architectures.h +++ b/LUFA/Common/Architectures.h @@ -64,8 +64,8 @@ /** Selects the Atmel 8-bit AVR (AT90USB* and ATMEGA*U* chips) architecture. */
#define ARCH_AVR8 0
- /** Selects the Atmel 32-bit UC3B AVR (AT32UC3B* chips) architecture. */
- #define ARCH_UC3B 1
+ /** Selects the Atmel 32-bit UC3 AVR (AT32UC3* chips) architecture. */
+ #define ARCH_UC3 1
#if !defined(__DOXYGEN__)
#define ARCH_ ARCH_AVR8
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index 80bafce3c..1d81d481e 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -84,7 +84,7 @@ #define ARCH_LITTLE_ENDIAN #include "Endianness.h" - #elif (ARCH == ARCH_UC3B) + #elif (ARCH == ARCH_UC3) #include <avr32/io.h> // === TODO: Find abstracted way to handle these === |