mirror of
https://github.com/goldenfishs/MRobot.git
synced 2025-07-04 06:34:16 +08:00
14 lines
229 B
Plaintext
14 lines
229 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}}
|
|
|