From 85e8487d39977f1cfc12df3ced5661aadac38b02 Mon Sep 17 00:00:00 2001 From: asterix Date: Mon, 19 May 2008 07:45:08 +0000 Subject: [PATCH] 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 --- bertos/cfg/arch_config.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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 */ -- 2.25.1