X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Farch_config.h;h=44717dba0b30d0320475ae5bab34f5ed2c554f64;hb=62e5d0dc52f609cc8b8739062b5526a1fbb3ea8e;hp=01ed05d3f6d9a718e7ac5f0d0a3d6effa572f9be;hpb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;p=bertos.git diff --git a/bertos/cfg/arch_config.h b/bertos/cfg/arch_config.h index 01ed05d3..44717dba 100644 --- a/bertos/cfg/arch_config.h +++ b/bertos/cfg/arch_config.h @@ -31,24 +31,27 @@ * * --> * + * \brief Set system configuration + * * \version $Id$ * * \author Bernardo Innocenti * - * \brief Set system configuration */ #ifndef ARCH_CONFIG_H #define ARCH_CONFIG_H +#include + /** * \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) /*\}*/ #endif /* ARCH_CONFIG_H */