remove lv_label_body_draw, can be replaced by style

This commit is contained in:
Gabor Kiss-Vamosi
2020-01-10 18:16:20 +01:00
parent 2a3384fdc2
commit c668c1731d
14 changed files with 70 additions and 104 deletions

View File

@@ -336,6 +336,20 @@ void lv_mem_defrag(void)
#endif
}
void lv_mem_test(void)
{
lv_mem_ent_t * e;
e = ent_get_next(NULL);
while(e) {
if(e->header.s.d_size > 200000) {
printf("mem err\n");
while(1);
}
e = ent_get_next(e);
}
}
/**
* Give information about the work memory of dynamic allocation
* @param mon_p pointer to a dm_mon_p variable,