55 lines
2.0 KiB
C
55 lines
2.0 KiB
C
/*
|
||
Init Task
|
||
任务初始化,创建各个线程任务和消息队列
|
||
*/
|
||
|
||
/* Includes ----------------------------------------------------------------- */
|
||
#include "task/user_task.h"
|
||
|
||
/* USER INCLUDE BEGIN */
|
||
#include "module/cmd.h"
|
||
/* USER INCLUDE END */
|
||
|
||
/* Private typedef ---------------------------------------------------------- */
|
||
/* Private define ----------------------------------------------------------- */
|
||
/* Private macro ------------------------------------------------------------ */
|
||
/* Private variables -------------------------------------------------------- */
|
||
/* Private function --------------------------------------------------------- */
|
||
/* Exported functions ------------------------------------------------------- */
|
||
|
||
/**
|
||
* \brief 初始化
|
||
*
|
||
* \param argument 未使用
|
||
*/
|
||
void Task_Init(void *argument) {
|
||
(void)argument; /* 未使用argument,消除警告 */
|
||
/* USER CODE INIT BEGIN */
|
||
|
||
/* USER CODE INIT END */
|
||
osKernelLock(); /* 锁定内核,防止任务切换 */
|
||
|
||
/* 创建任务线程 */
|
||
task_runtime.thread.chassis = osThreadNew(Task_chassis, NULL, &attr_chassis);
|
||
task_runtime.thread.rc = osThreadNew(Task_rc, NULL, &attr_rc);
|
||
task_runtime.thread.cmd = osThreadNew(Task_cmd, NULL, &attr_cmd);
|
||
task_runtime.thread.atti_esti = osThreadNew(Task_atti_esti, NULL, &attr_atti_esti);
|
||
task_runtime.thread.mechanism = osThreadNew(Task_mechanism, NULL, &attr_mechanism);
|
||
|
||
// 创建消息队列
|
||
/* USER MESSAGE BEGIN */
|
||
task_runtime.msgq.user_msg = osMessageQueueNew(2u, 10, NULL);
|
||
|
||
/* rc -> cmd 的遥控器数据队列 */
|
||
task_runtime.msgq.cmd.rc = osMessageQueueNew(1u, sizeof(CMD_RC_t), NULL);
|
||
|
||
/* cmd -> chassis 的底盘指令队列 */
|
||
task_runtime.msgq.chassis.cmd = osMessageQueueNew(1u, sizeof(Chassis_CMD_t), NULL);
|
||
|
||
/* cmd -> mechanism 的云台指令队列 */
|
||
task_runtime.msgq.mechanism.cmd = osMessageQueueNew(1u, sizeof(Mechanism_CMD_t), NULL);
|
||
/* USER MESSAGE END */
|
||
|
||
osKernelUnlock(); // 解锁内核
|
||
osThreadTerminate(osThreadGetId()); // 任务完成后结束自身
|
||
} |