lv文件系统依然有问题 貌似是seek问题
This commit is contained in:
@@ -457,7 +457,7 @@
|
||||
*-----------*/
|
||||
|
||||
/** Enable log module */
|
||||
#define LV_USE_LOG 0
|
||||
#define LV_USE_LOG 1
|
||||
#if LV_USE_LOG
|
||||
/** Set value to one of the following levels of logging detail:
|
||||
* - LV_LOG_LEVEL_TRACE Log detailed information.
|
||||
@@ -466,7 +466,7 @@
|
||||
* - LV_LOG_LEVEL_ERROR Log only critical issues, when system may fail.
|
||||
* - LV_LOG_LEVEL_USER Log only custom log messages added by the user.
|
||||
* - LV_LOG_LEVEL_NONE Do not log anything. */
|
||||
#define LV_LOG_LEVEL LV_LOG_LEVEL_WARN
|
||||
#define LV_LOG_LEVEL LV_LOG_LEVEL_INFO
|
||||
|
||||
/** - 1: Print log with 'printf';
|
||||
* - 0: User needs to register a callback with `lv_log_register_print_cb()`. */
|
||||
@@ -479,11 +479,11 @@
|
||||
|
||||
/** - 1: Enable printing timestamp;
|
||||
* - 0: Disable printing timestamp. */
|
||||
#define LV_LOG_USE_TIMESTAMP 1
|
||||
#define LV_LOG_USE_TIMESTAMP 0
|
||||
|
||||
/** - 1: Print file and line number of the log;
|
||||
* - 0: Do not print file and line number of the log. */
|
||||
#define LV_LOG_USE_FILE_LINE 1
|
||||
#define LV_LOG_USE_FILE_LINE 0
|
||||
|
||||
/* Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs. */
|
||||
#define LV_LOG_TRACE_MEM 1 /**< Enable/disable trace logs in memory operations. */
|
||||
|
||||
Reference in New Issue
Block a user