`Text area` causes task watchdog got triggered

Branch: dev-7.0
commit: c7374948

When I use Text area, more string input will cause task watchdog. After debugging, it is found that the program is stop in the position shown in the figure.

lv_lable.c

This means that you don’t have enough heap space to allocate a new buffer for the text. Try increasing your heap size.

Or more specifically LV_MEM_SIZE in lv_conf.h.

1 Like