00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __iarcompat_h_INCLUDED__
00020 #define __iarcompat_h_INCLUDED__
00021
00022 #if defined __IAR_SYSTEMS_ICC__ || defined __IAR_SYSTEMS_ASM__
00023
00024
00025 #ifndef ENABLE_BIT_DEFINITIONS
00026 # define ENABLE_BIT_DEFINITIONS 1
00027 #endif
00028
00029
00030 #include <ioavr.h>
00031 #ifndef __IAR_SYSTEMS_ASM__
00032 # include <inavr.h>
00033 #endif
00034
00035 #define __attribute__(arg)
00036 #define IAR_SECTION(section) @ section
00037
00038 #ifndef USB_BUFFER_SECTION
00039 # define USB_BUFFER_SECTION "TINY_Z"
00040 #endif
00041
00042 #ifdef __IAR_SYSTEMS_ASM__
00043 # define __ASSEMBLER__
00044 #endif
00045
00046 #ifdef __HAS_ELPM__
00047 # define PROGMEM __farflash
00048 #else
00049 # define PROGMEM __flash
00050 #endif
00051
00052 #define PRG_RDB(addr) (*(PROGMEM char *)(addr))
00053
00054
00055
00056
00057 #define cli() __disable_interrupt()
00058 #define sei() __enable_interrupt()
00059 #define wdt_reset() __watchdog_reset()
00060
00061
00062 #endif
00063 #endif