Add defines for avr target.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 22 May 2008 08:40:48 +0000 (08:40 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 22 May 2008 08:40:48 +0000 (08:40 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1325 38d2e660-2303-0410-9eaa-f027e97ec537

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