X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fcfg_arch.h;h=4b196a41c21fee96c174d6f38ca7e1a273d53cac;hb=3ddb5bbec1b0c60a21dbd1311a285e79ba546ccc;hp=2dd3fb62e0277fec524ce1ae6589a9676b253c51;hpb=9fce8b6d9e3e6996e303bf042c5550e7da488f38;p=bertos.git diff --git a/bertos/cfg/cfg_arch.h b/bertos/cfg/cfg_arch.h index 2dd3fb62..4b196a41 100644 --- a/bertos/cfg/cfg_arch.h +++ b/bertos/cfg/cfg_arch.h @@ -27,15 +27,15 @@ * the GNU General Public License. * * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/) - * Copyright 2001,2002,2003 Bernardo Innocenti + * Copyright 2001,2002,2003 Bernie Innocenti * * --> * - * \brief Set system configuration + * \brief Set system configuration. * * \version $Id$ * - * \author Bernardo Innocenti + * \author Bernie Innocenti * */ @@ -43,15 +43,11 @@ #ifndef CFG_ARCH_CONFIG_H #define CFG_ARCH_CONFIG_H -#include +#define ARCH_DEFAULT (1<<0) ///< Default architecture -/** - * \name Architectures - * \{ - */ -#define ARCH_FOO BV(0) -#define ARCH_BAR BV(1) -#define ARCH_EMUL BV(2) -/*\}*/ +#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 */