From: asterix Date: Mon, 19 May 2008 07:45:08 +0000 (+0000) Subject: Use BV macro to name supported arch. Add other arch. X-Git-Tag: 2.0.0~666 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=85e8487d39977f1cfc12df3ced5661aadac38b02;p=bertos.git Use BV macro to name supported arch. Add other arch. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1268 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cfg/arch_config.h b/bertos/cfg/arch_config.h index 01ed05d3..6a597554 100644 --- a/bertos/cfg/arch_config.h +++ b/bertos/cfg/arch_config.h @@ -31,11 +31,12 @@ * * --> * + * \brief Set system configuration + * * \version $Id$ * * \author Bernardo Innocenti * - * \brief Set system configuration */ @@ -46,9 +47,11 @@ * \name Architectures * \{ */ -#define ARCH_FOO (1<<0) -#define ARCH_BAR (1<<1) -#define ARCH_EMUL (1<<8) +#define ARCH_FOO BV(0) +#define ARCH_BAR BV(1) +#define ARCH_EMUL BV(2) +#define ARCH_PIZZA BV(3) +#define ARCH_PROTO BV(4) /*\}*/ #endif /* ARCH_CONFIG_H */