프로그램 사용/lvgl
lvgl perf mon
구차니
2026. 2. 3. 14:24
매번 뜨길래 어떻게 끄나 찾아봄
| In your lv_conf.h set this: #define LV_USE_PERF_MONITOR 0 |
[링크 : https://forum.lvgl.io/t/remove-fps-and-cpu-display/11042]
lv_conf.h를 찾아보니 아래와 같이 선언되어있다.
| /*------------------ * STATUS MONITORING *------------------*/ /*1: Show CPU usage and FPS count * Requires `LV_USE_SYSMON = 1`*/ #define LV_USE_PERF_MONITOR 1 #if LV_USE_PERF_MONITOR #define LV_USE_PERF_MONITOR_POS LV_ALIGN_BOTTOM_RIGHT /*0: Displays performance data on the screen, 1: Prints performance data using log.*/ #define LV_USE_PERF_MONITOR_LOG_MODE 0 #endif /*1: Show the used memory and the memory fragmentation * Requires `LV_USE_BUILTIN_MALLOC = 1` * Requires `LV_USE_SYSMON = 1`*/ #define LV_USE_MEM_MONITOR 1 #if LV_USE_MEM_MONITOR #define LV_USE_MEM_MONITOR_POS LV_ALIGN_BOTTOM_LEFT #endif |