aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-02-27 14:04:29 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-02-27 14:04:29 +0000
commita6b873e16abefd4638ff9fac78c097f29ab3c231 (patch)
tree1457d92965426e6aa46957e3044e26d29124c56e /LUFA/Common
parent0c7db1581bcaab57431517cc58849f506cfc9435 (diff)
More AVR32 UC3B architecture ports - USB device mode applications can now be sucessfully compiled, although they will be currently non-functional.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1685 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Common.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index a62cc7e7..cf6c2830 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -92,6 +92,18 @@
typedef uint32_t uint_reg_t;
+ #define EEMEM
+ #define PROGMEM const
+ #define ISR(Name) void Name (void)
+ #define ATOMIC_BLOCK(x) if (1)
+ #define ATOMIC_RESTORESTATE
+ #define pgm_read_byte(x) *x
+ #define eeprom_read_byte(x) *x
+ #define eeprom_update_byte(x, y) *x = y
+ #define eeprom_write_byte(x, y) *x = y
+ #define memcmp_P(...) memcmp(__VA_ARGS__)
+ #define memcpy_P(...) memcpy(__VA_ARGS__)
+
#warning The UC3B architecture support is currently experimental and incomplete!
#endif