78 lines
2.2 KiB
C
78 lines
2.2 KiB
C
/*
|
||
shoot Task
|
||
|
||
*/
|
||
|
||
/* Includes ----------------------------------------------------------------- */
|
||
#include "module/cmd.h"
|
||
#include "task/user_task.h"
|
||
/* USER INCLUDE BEGIN */
|
||
#include "module/shoot.h"
|
||
#include "module/config.h"
|
||
#include "device/ai.h"
|
||
/* USER INCLUDE END */
|
||
|
||
/* Private typedef ---------------------------------------------------------- */
|
||
/* Private define ----------------------------------------------------------- */
|
||
/* Private macro ------------------------------------------------------------ */
|
||
/* Private variables -------------------------------------------------------- */
|
||
/* USER STRUCT BEGIN */
|
||
Shoot_t shoot;
|
||
Shoot_CMD_t shoot_cmd;
|
||
AI_cmd_t shoot_ai_cmd;
|
||
/* USER STRUCT END */
|
||
|
||
/* Private function --------------------------------------------------------- */
|
||
/* Exported functions ------------------------------------------------------- */
|
||
void Task_shoot(void *argument) {
|
||
(void)argument; /* 未使用argument,消除警告 */
|
||
|
||
|
||
/* 计算任务运行到指定频率需要等待的tick数 */
|
||
const uint32_t delay_tick = osKernelGetTickFreq() / SHOOT_FREQ;
|
||
|
||
osDelay(SHOOT_INIT_DELAY); /* 延时一段时间再开启任务 */
|
||
|
||
uint32_t tick = osKernelGetTickCount(); /* 控制任务运行频率的计时 */
|
||
/* USER CODE INIT BEGIN */
|
||
Shoot_Init(&shoot,&Config_GetRobotParam()->shoot,SHOOT_FREQ);
|
||
Shoot_SetMode(&shoot,SHOOT_MODE_SINGLE);
|
||
|
||
/* USER CODE INIT END */
|
||
|
||
while (1) {
|
||
tick += delay_tick; /* 计算下一个唤醒时刻 */
|
||
/* USER CODE BEGIN */
|
||
osMessageQueueGet(task_runtime.msgq.shoot.cmd, &shoot_cmd, NULL, 0);
|
||
osMessageQueueGet(task_runtime.msgq.gimbal.ai.s_cmd, &shoot_ai_cmd, NULL, 0);
|
||
|
||
if(shoot_cmd.control_mode==SHOOT_REMOTE)
|
||
{
|
||
//do nothing,使用遥控器的指令
|
||
}
|
||
else if(shoot_cmd.control_mode==SHOOT_AI)
|
||
{
|
||
shoot_cmd.mode = SHOOT_MODE_SINGLE;
|
||
if(shoot_ai_cmd.mode==0 || shoot_ai_cmd.mode==1)
|
||
{
|
||
shoot_cmd.firecmd=false;
|
||
shoot_cmd.ready=true;
|
||
|
||
}
|
||
else if(shoot_ai_cmd.mode==2)
|
||
{
|
||
|
||
shoot_cmd.firecmd=true;
|
||
shoot_cmd.ready=true;
|
||
}
|
||
}
|
||
|
||
Shoot_UpdateFeedback(&shoot);
|
||
Shoot_SetMode(&shoot,shoot_cmd.mode);
|
||
Shoot_Control(&shoot,&shoot_cmd);
|
||
|
||
/* USER CODE END */
|
||
osDelayUntil(tick); /* 运行结束,等待下一次唤醒 */
|
||
}
|
||
|
||
} |