Show 'No configuration needed' for modules that don't need any configuration
[bertos.git] / bertos / cfg / cfg_arch.h
index c6cd23f68b0740f1fa19aaa200b0604469f2dc53..ea85566dbb274e9a877a4354669c6fafb6325e80 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_FOO       (1<<0) ///< FOO architecture
+#define ARCH_BAR       (1<<1) ///< BAR architecture
+#define ARCH_EMUL      (1<<2) ///< EMUL architecture
+#define ARCH_QT        (1<<3) ///< QT architecture
+#define ARCH_UNITTEST  (1<<4) ///< UNITTEST architecture
+#define ARCH_NIGHTTEST (1<<5) ///< NIGHTTEST architecture
 
 #endif /* CFG_ARCH_CONFIG_H */