* 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 */
* 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")