From f301a4a21f34bea6c41872258a9dab3263f04e2a Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 13 Mar 2011 06:05:30 +0000 Subject: [PATCH] Oops - rename misnamed Endianess.h header file. Remove UC3B temp macros related to EEPROM, to ensure that projects requiring this break at compile time rather than at runtime until a solution can be found. --- LUFA.pnproj | 2 +- LUFA/Common/Common.h | 4 ---- LUFA/Common/{Endianess.h => Endianness.h} | 0 3 files changed, 1 insertion(+), 5 deletions(-) rename LUFA/Common/{Endianess.h => Endianness.h} (100%) diff --git a/LUFA.pnproj b/LUFA.pnproj index a06bd0b91d..f1fc2d8904 100644 --- a/LUFA.pnproj +++ b/LUFA.pnproj @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index e24906d4d7..c2eeeade5b 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -89,14 +89,10 @@ // === TODO: Find abstracted way to handle these === #define ISR(Name) void Name (void) __attribute__((__interrupt__)); void Name (void) - #define EEMEM #define PROGMEM const #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 _delay_ms(x) #define memcmp_P(...) memcmp(__VA_ARGS__) #define memcpy_P(...) memcpy(__VA_ARGS__) diff --git a/LUFA/Common/Endianess.h b/LUFA/Common/Endianness.h similarity index 100% rename from LUFA/Common/Endianess.h rename to LUFA/Common/Endianness.h