X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/a318f32b310eac95a4a208a0f25fb1c39afa22f5..29ba88cffd4198b02e8ca04c31aed2c175c5502e:/LUFA/Common/Common.h diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h index a62cc7e7e..355391b2a 100644 --- a/LUFA/Common/Common.h +++ b/LUFA/Common/Common.h @@ -92,6 +92,20 @@ typedef uint32_t uint_reg_t; + // TODO + #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 _delay_ms(x) + #define memcmp_P(...) memcmp(__VA_ARGS__) + #define memcpy_P(...) memcpy(__VA_ARGS__) + #warning The UC3B architecture support is currently experimental and incomplete! #endif