修改LVGL线程的优先级

This commit is contained in:
不吃油炸鸡
2026-03-25 16:01:18 +08:00
parent 05182803b3
commit 0d6df1c508

View File

@@ -78,7 +78,7 @@ osThreadId_t LvHandlerTaskHandle;
const osThreadAttr_t LvHandlerTask_attributes = {
.name = "LvHandlerTask",
.stack_size = 128 * 24,
.priority = (osPriority_t) osPriorityLow,
.priority = (osPriority_t) osPriorityLow1,
};