This commit is contained in:
2025-11-25 21:25:41 +08:00
parent 09c8ef7be8
commit e2e275b6e4
117 changed files with 12755 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#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}}