You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
by monitoring memory usage with lv_mem_monitor
my normal free_size usage is around 70k and max_used is around 64k
but if I unhide this widget and display this screen my max_used goes to 122 000 and most of the time will crash.
I found that in the function circ_calc_aa4 there is no check for null pointer on circ_x
int32_t * cir_x = lv_malloc_zeroed(cir_xy_size); and this is where my program crashed but
But the real problem is why is the memory max_used jump from 64k to 122k only on this widget.
I had another simillar issue with horizontal sliders using gradians too.
It seems to be related to the drawing of the gradian or shadow used by this widget creating a memory leak?
How to reproduce?
No response
The text was updated successfully, but these errors were encountered:
LVGL version
9.2.2
Platform
I'm using esp32s3
I set LV_MEM_SIZE to 128*1024U
What happened?
by monitoring memory usage with lv_mem_monitor
my normal free_size usage is around 70k and max_used is around 64k
but if I unhide this widget and display this screen my max_used goes to 122 000 and most of the time will crash.
I found that in the function circ_calc_aa4 there is no check for null pointer on circ_x
int32_t * cir_x = lv_malloc_zeroed(cir_xy_size); and this is where my program crashed but
But the real problem is why is the memory max_used jump from 64k to 122k only on this widget.
I had another simillar issue with horizontal sliders using gradians too.
It seems to be related to the drawing of the gradian or shadow used by this widget creating a memory leak?
How to reproduce?
No response
The text was updated successfully, but these errors were encountered: