File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 728
728
/*1: Enable system monitor component*/
729
729
#define LV_USE_SYSMON 1
730
730
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
+
731
751
/*1: Enable Monkey test*/
732
752
#define LV_USE_MONKEY 0
733
753
795
815
#define LV_SDL_INCLUDE_PATH <SDL2/SDL.h>
796
816
#define LV_SDL_PARTIAL_MODE 0 /*Recommended only to emulate a setup with a display controller*/
797
817
#define LV_SDL_FULLSCREEN 0
818
+ #define LV_SDL_DIRECT_EXIT 0 /*1: Exit the application when all SDL widows are closed*/
798
819
#endif
799
820
800
821
/*Driver for /dev/fb*/
809
830
#define LV_LINUX_FBDEV_BSD 0
810
831
#endif
811
832
833
+ /*Driver for /dev/dri/card*/
834
+ #define LV_USE_LINUX_DRM 0
835
+
812
836
/*Interface for TFT_eSPI*/
813
837
#define LV_USE_TFT_ESPI 0
814
838
You can’t perform that action at this time.
0 commit comments