MRobot/task/user_task.c.template
2025-06-19 01:10:01 +08:00

13 lines
228 B
Plaintext

#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 */
{{task_attr_definitions}}