Add defines for avr target.
[bertos.git] / bertos / cpu / attr.h
index ce6e4ae38d35823c5b083860b97ff1c2ad5cf66a..4090abb9411bf38e7a6eedb925632174b064543c 100644 (file)
         */
        #define CPU_REG_INIT_VALUE(reg) (reg == 0 ? 0x80 : 0)
 
+       #warning FIXME:This macro are empty for AVR target, implent it!
+       /**
+        * Function attribute for use with performance critical code.
+        */
+       #define FAST_FUNC /* */
+
+       /**
+        * Data attribute to move constant data to fast memory storage.
+        *
+        * \see FAST_FUNC
+        */
+       #define FAST_RODATA /* */
+
 #else
        #error No CPU_... defined.
 #endif