From 67e6b677228f4d49596bff871b9d2c874ed70509 Mon Sep 17 00:00:00 2001 From: qwert Date: Tue, 17 Jun 2008 17:00:53 +0000 Subject: [PATCH] Removed breaks from #if and escape special char for doxygen syntax. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1477 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cfg/log.h | 12 ++++++------ bertos/verstag.h | 6 ++++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/bertos/cfg/log.h b/bertos/cfg/log.h index 6f1f1790..bf69e9ca 100644 --- a/bertos/cfg/log.h +++ b/bertos/cfg/log.h @@ -35,9 +35,9 @@ * This module implement a simple interface to use the multi level logging system. * The log message have the priority order, like this: * - * - #error message (most hight) - * - #warning message - * - #info message (most low) + * - error message (most hight) + * - warning message + * - info message (most low) * * With this priority system we can log only the message that have egual or major * priority than log level that you has been configurate. Further you can have a @@ -50,14 +50,14 @@ * To use logging system you should include this module in your drive and use * a LOG_ERROR, LOG_WARNING and LOG_INFO macros to set the level log of the message. * Then you should define a LOG_LEVEL and LOG_VERBOSE costant in your - * \c cfg/cfg_.h using the follow police: + * \c cfg/cfg_\.h using the follow police: * - * - in your file \c cfg/cfg_.h, you define the logging + * - in your file \c cfg/cfg_\.h, you define the logging * level and verbosity mode for your specific module: * * \code * - * ** + * ** * * Logging level definition. * * * * Use 0 to log only the error messages diff --git a/bertos/verstag.h b/bertos/verstag.h index 78387b20..44cae92d 100644 --- a/bertos/verstag.h +++ b/bertos/verstag.h @@ -38,6 +38,7 @@ * \brief Declare application version strings */ + #ifndef BERTOS_VERSTAG_H #define BERTOS_VERSTAG_H @@ -50,12 +51,13 @@ #define APP_AUTHOR "Develer" #define APP_COPYRIGHT "Copyright 2006 Develer (http://www.develer.com/)" -#if (ARCH & ARCH_FOO) + +#if ARCH & ARCH_FOO #define VERS_MAJOR 0 #define VERS_MINOR 1 #define VERS_REV 0 #define VERS_LETTER "" -#elif (ARCH & ARCH_BAR) +#elif ARCH & ARCH_BAR #define VERS_MAJOR 0 #define VERS_MINOR 1 #define VERS_REV 0 -- 2.25.1