modify stack size of lvgl demo

This commit is contained in:
Wang_Weigen 2022-05-30 16:34:29 +08:00
parent ad309f90c1
commit c6c0a0f71b
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ static int lvgl_demo_init(void)
{
pthread_attr_t attr;
attr.schedparam.sched_priority = 25;
attr.stacksize = 8192;
attr.stacksize = 4096;
PrivTaskCreate(&lvgl_task, &attr, lvgl_thread, NULL);