Removed breaks from #if and escape special char for doxygen syntax.
authorqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 17 Jun 2008 17:00:53 +0000 (17:00 +0000)
committerqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 17 Jun 2008 17:00:53 +0000 (17:00 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1477 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/log.h
bertos/verstag.h

index 6f1f179075fd42dee739d456d0f20b17c2359aaf..bf69e9ca105f32ecd7615a18395f4939786b310c 100644 (file)
@@ -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
  * 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_<your_module_name>.h using the follow police:
+ * \c cfg/cfg_\<your_module_name\>.h using the follow police:
  *
- * - in your file \c cfg/cfg_<module_name>.h, you define the logging
+ * - in your file \c cfg/cfg_\<module_name\>.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
index 78387b20094ba110a570cc35b05991bc50630795..44cae92d8e10396e6ae171650f7efb7b4485b5f0 100644 (file)
@@ -38,6 +38,7 @@
  * \brief Declare application version strings
  */
 
+
 #ifndef BERTOS_VERSTAG_H
 #define BERTOS_VERSTAG_H
 
 #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