aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-02-27 15:23:09 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-02-27 15:23:09 +0000
commit4a3b70e72710abc5232915d07b0e0691d29aaef4 (patch)
tree5e4688dd291d78081a0d0b109636049668ea25b0 /LUFA/Common
parent381dd0d49079dfc1e356eacbb061853c8f365165 (diff)
downloadlufa-4a3b70e72710abc5232915d07b0e0691d29aaef4.tar.gz
lufa-4a3b70e72710abc5232915d07b0e0691d29aaef4.tar.bz2
lufa-4a3b70e72710abc5232915d07b0e0691d29aaef4.zip
Fix USB Host mode compile errors for the UC3B architecture.
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index fc2185058..355391b2a 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -102,6 +102,7 @@
#define eeprom_read_byte(x) *x
#define eeprom_update_byte(x, y) *x = y
#define eeprom_write_byte(x, y) *x = y
+ #define _delay_ms(x)
#define memcmp_P(...) memcmp(__VA_ARGS__)
#define memcpy_P(...) memcpy(__VA_ARGS__)