engineer/engineer/User/task/user_task.c
2025-12-20 15:31:14 +08:00

21 lines
453 B
C

#include "task/user_task.h"
Task_Runtime_t task_runtime;
const osThreadAttr_t attr_init = {
.name = "Task_Init",
.priority = osPriorityRealtime,
.stack_size = 256 * 4,
};
/* User_task */
const osThreadAttr_t attr_control = {
.name = "control",
.priority = osPriorityNormal,
.stack_size = 1024 * 4,
};
const osThreadAttr_t attr_display = {
.name = "display",
.priority = osPriorityNormal,
.stack_size = 1024 * 4,
};