shoot/User/task/dji_task.c

57 lines
1.1 KiB
C
Raw Normal View History

2025-03-12 23:04:18 +08:00
#include "dji_task.h"
#include "TopDefine.h"//事件组的一些东西
#include "FreeRTOS.h"
#include "attrTask.h"
#include <cmsis_os2.h>
#include "remote_control.h"
#include "dji.h"
#include "vofa.h"
extern RC_mess_t RC_mess;
extern int16_t result;
2025-03-13 19:23:24 +08:00
extern int16_t t_result;
2025-03-12 23:04:18 +08:00
extern motor_measure_t *motor_3508_data;
float vofa[8];
/**
* \brief
*
* \param argument 使
*/
int speed=0;
float angle=0;
float m;
void Task_Motor(void *argument)
{
(void)argument; /* 未使用argument消除警告 */
2025-03-13 19:23:24 +08:00
const uint32_t delay_tick = osKernelGetTickFreq() / TASK_FREQ_CTRL_CHASSIS;
2025-03-12 23:04:18 +08:00
motor_init();
uint32_t tick = osKernelGetTickCount();
while(1)
{
//收到消息队列新数据
//电机控制
//motor_speed(speed);
m=angle*(8191/360);
2025-03-13 19:23:24 +08:00
// motor_pos(m);
trigger_pos(m);
2025-03-12 23:04:18 +08:00
//CAN_cmd_200(result[MOTOR_UP],result[MOTOR_UP],result[MOTOR_UP],result[MOTOR_UP],&hcan1);
2025-03-13 19:23:24 +08:00
CAN_cmd_200(t_result,0,0,0,&hcan1);
2025-03-12 23:04:18 +08:00
osDelay(2);
// vofa[0]=motor_3508_data->speed_rpm;
// vofa[1]=speed;
// vofa_tx_main(vofa);
2025-03-13 19:23:24 +08:00
tick += delay_tick;
osDelayUntil(tick);
2025-03-12 23:04:18 +08:00
}
}