Add test ARCH; remove macros.h dependency to allow to include this file also in prepr...
[bertos.git] / bertos / cfg / cfg_arch.h
index a4c852ebc5be2cc6759da528bf83428719dbcd97..17d5709a7f5d8b5ea7e1535238ed6dff2c69cca0 100644 (file)
 #ifndef CFG_ARCH_CONFIG_H
 #define CFG_ARCH_CONFIG_H
 
-#include <cfg/macros.h>
-
 /**
  * \name Architectures
  * \{
  */
-#define ARCH_FOO     BV(0)
-#define ARCH_BAR     BV(1)
-#define ARCH_EMUL    BV(2)
-#define ARCH_QT      BV(3)
+#define ARCH_FOO       (1<<0)
+#define ARCH_BAR       (1<<1)
+#define ARCH_EMUL      (1<<2)
+#define ARCH_QT        (1<<3)
+#define ARCH_UNITTEST  (1<<4)
+#define ARCH_NIGHTTEST (1<<5)
 /*\}*/
 
 #endif /* CFG_ARCH_CONFIG_H */