Add comments. Reformat.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Jun 2008 10:29:09 +0000 (10:29 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Jun 2008 10:29:09 +0000 (10:29 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1424 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_kfile.h
bertos/cfg/test.h

index 8e2bc92697b5f721476b63dda94086bd4b1012fb..bc6ff25f6c65717372fb45f33e3b43688e29b5bd 100644 (file)
  * Use 1 to log the error and warning messages
  * Use 2 to log all messages
  */
-#define KFILE_LOG_LEVEL      2
+#define KFILE_LOG_LEVEL        2
 
 /**
  * Set logging verbosity.
  *
  * If verbosity is zero print short log messages.
  */
-#define KFILE_LOG_VERBOSITY    1
+#define KFILE_LOG_VERBOSITY    0
 
-/// TODO:
-#define CONFIG_KFILE_GETS 0
+/// Enable the gets function with echo.
+#define CONFIG_KFILE_GETS      0
 
 #endif /* CFG_KFILE_H */
 
index 96b4138b3de6e991a562bf16c4146f603b394eb0..5540d105f062276f8f47a6633425ca22244f4ea1 100644 (file)
  * this is not really an error. To ignore that we mark it
  * with this macro, where str is the message string of the assert
  * that we want to drop.
+ * To use this macro copy the assert log message, and paste as argument
+ * of this macro. In assert message log is report also the number line
+ * of the code that have generate the assert in this way you can trap
+ * only the select assert message.
+ *
  */
 #define SILENT_ASSERT(str) \
                kputs("SILENT_ASSERT:$"str"$\n")