Skip to content

Commit 8053b27

Browse files
committed
Update LVGL
1 parent 0c4f8b4 commit 8053b27

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

lv_conf.h

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,26 @@
728728
/*1: Enable system monitor component*/
729729
#define LV_USE_SYSMON 1
730730

731+
/*1: Enable the runtime performance profiler*/
732+
#define LV_USE_PROFILER 0
733+
#if LV_USE_PROFILER
734+
/*1: Enable the built-in profiler*/
735+
#define LV_USE_PROFILER_BUILTIN 1
736+
#if LV_USE_PROFILER_BUILTIN
737+
/*Default profiler trace buffer size*/
738+
#define LV_PROFILER_BUILTIN_BUF_SIZE (16 * 1024) /*[bytes]*/
739+
#endif
740+
741+
/*Header to include for the profiler*/
742+
#define LV_PROFILER_INCLUDE "lvgl/src/misc/lv_profiler_builtin.h"
743+
744+
/*Profiler start point function*/
745+
#define LV_PROFILER_BEGIN LV_PROFILER_BUILTIN_BEGIN
746+
747+
/*Profiler end point function*/
748+
#define LV_PROFILER_END LV_PROFILER_BUILTIN_END
749+
#endif
750+
731751
/*1: Enable Monkey test*/
732752
#define LV_USE_MONKEY 0
733753

@@ -795,6 +815,7 @@
795815
#define LV_SDL_INCLUDE_PATH <SDL2/SDL.h>
796816
#define LV_SDL_PARTIAL_MODE 0 /*Recommended only to emulate a setup with a display controller*/
797817
#define LV_SDL_FULLSCREEN 0
818+
#define LV_SDL_DIRECT_EXIT 0 /*1: Exit the application when all SDL widows are closed*/
798819
#endif
799820

800821
/*Driver for /dev/fb*/
@@ -809,6 +830,9 @@
809830
#define LV_LINUX_FBDEV_BSD 0
810831
#endif
811832

833+
/*Driver for /dev/dri/card*/
834+
#define LV_USE_LINUX_DRM 0
835+
812836
/*Interface for TFT_eSPI*/
813837
#define LV_USE_TFT_ESPI 0
814838

lvgl

Submodule lvgl updated from 4c4798d to ae5b089

0 commit comments

Comments
 (0)