feat(profiler): support different module divisions (#6834)

Signed-off-by: liuhongchao <liuhongchao@xiaomi.com>
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: liuhongchao <liuhongchao@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
This commit is contained in:
VIFEX
2024-09-18 17:59:45 +08:00
committed by GitHub
parent 1dd63c7e5f
commit a89cda10c1
44 changed files with 675 additions and 268 deletions

View File

@@ -936,6 +936,36 @@
/** Profiler end point function with custom tag */
#define LV_PROFILER_END_TAG LV_PROFILER_BUILTIN_END_TAG
/*Enable layout profiler*/
#define LV_PROFILER_LAYOUT 1
/*Enable disp refr profiler*/
#define LV_PROFILER_REFR 1
/*Enable draw profiler*/
#define LV_PROFILER_DRAW 1
/*Enable indev profiler*/
#define LV_PROFILER_INDEV 1
/*Enable decoder profiler*/
#define LV_PROFILER_DECODER 1
/*Enable font profiler*/
#define LV_PROFILER_FONT 1
/*Enable fs profiler*/
#define LV_PROFILER_FS 1
/*Enable style profiler*/
#define LV_PROFILER_STYLE 0
/*Enable timer profiler*/
#define LV_PROFILER_TIMER 1
/*Enable cache profiler*/
#define LV_PROFILER_CACHE 1
#endif
/** 1: Enable Monkey test */