Suspend a created LVGL task

Description

I want to suspend a task temporarily, -which was created by this “lv_task_create” function-
but I can’t find any function for it.
So did I miss anything or not?

What MCU/Processor/Board and compiler are you using?

STM32F429, GCC, CubeIDE

What LVGL version are you using?

v11

What do you want to achieve?

suspend a created lvgl task.

Never tried it but looks like you can set the task priority to LV_TASK_PRIO_OFF

2 Likes

Yeah, it works for me, thanks.