From 5c1eac455fcb26ce5090b790ded85f936091570c Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 4 Mar 2020 11:03:31 +0100 Subject: [PATCH] disable PERF_MONITOR by default --- lv_conf_template.h | 2 +- src/lv_conf_internal.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_conf_template.h b/lv_conf_template.h index 2748d1b10..94c599b9e 100644 --- a/lv_conf_template.h +++ b/lv_conf_template.h @@ -171,7 +171,7 @@ typedef void * lv_fs_drv_user_data_t; #define LV_USE_USER_DATA 0 /*1: Show CPU usage and FPS count in the right bottom corner*/ -#define LV_USE_PERF_MONITOR 1 +#define LV_USE_PERF_MONITOR 0 /*======================== * Image decoder and cache diff --git a/src/lv_conf_internal.h b/src/lv_conf_internal.h index 2f3dec5b7..abd306607 100644 --- a/src/lv_conf_internal.h +++ b/src/lv_conf_internal.h @@ -253,7 +253,7 @@ /*1: Show CPU usage and FPS count in the right bottom corner*/ #ifndef LV_USE_PERF_MONITOR -#define LV_USE_PERF_MONITOR 1 +#define LV_USE_PERF_MONITOR 0 #endif /*========================