73 lines
2.3 KiB
C
73 lines
2.3 KiB
C
/*
|
||
ctrl_chassis Task
|
||
|
||
*/
|
||
|
||
/* Includes ----------------------------------------------------------------- */
|
||
#include "task/user_task.h"
|
||
/* USER INCLUDE BEGIN */
|
||
#include "bsp/can.h"
|
||
#include "device/motor_lk.h"
|
||
#include "device/motor_lz.h"
|
||
#include "module/config.h"
|
||
#include "module/balance_chassis.h"
|
||
|
||
/* USER INCLUDE END */
|
||
|
||
/* Private typedef ---------------------------------------------------------- */
|
||
/* Private define ----------------------------------------------------------- */
|
||
/* Private macro ------------------------------------------------------------ */
|
||
/* Private variables -------------------------------------------------------- */
|
||
/* USER STRUCT BEGIN */
|
||
Chassis_t chassis;
|
||
Chassis_CMD_t chassis_cmd = {
|
||
.mode = CHASSIS_MODE_RECOVER, // 改为RECOVER模式,让电机先启动
|
||
.move_vec = {
|
||
.vx = 0.0f,
|
||
.vy = 0.0f,
|
||
.wz = 0.0f,
|
||
},
|
||
.height = 0.0f,
|
||
};
|
||
Chassis_IMU_t chassis_imu;
|
||
|
||
MOTOR_Feedback_t left_wheel_fb;
|
||
MOTOR_Feedback_t right_wheel_fb;
|
||
/* USER STRUCT END */
|
||
|
||
/* Private function --------------------------------------------------------- */
|
||
/* Exported functions ------------------------------------------------------- */
|
||
void Task_ctrl_chassis(void *argument) {
|
||
(void)argument; /* 未使用argument,消除警告 */
|
||
|
||
|
||
/* 计算任务运行到指定频率需要等待的tick数 */
|
||
const uint32_t delay_tick = osKernelGetTickFreq() / CTRL_CHASSIS_FREQ;
|
||
|
||
osDelay(CTRL_CHASSIS_INIT_DELAY); /* 延时一段时间再开启任务 */
|
||
|
||
uint32_t tick = osKernelGetTickCount(); /* 控制任务运行频率的计时 */
|
||
/* USER CODE INIT BEGIN */
|
||
|
||
Chassis_Init(&chassis, &Config_GetRobotParam()->chassis_param, CTRL_CHASSIS_FREQ);
|
||
|
||
|
||
/* USER CODE INIT END */
|
||
|
||
while (1) {
|
||
tick += delay_tick; /* 计算下一个唤醒时刻 */
|
||
/* USER CODE BEGIN */
|
||
if (osMessageQueueGet(task_runtime.msgq.chassis_imu, &chassis_imu, NULL, 0) == osOK) {
|
||
chassis.feedback.imu = chassis_imu;
|
||
}
|
||
if (osMessageQueueGet(task_runtime.msgq.Chassis_cmd, &chassis_cmd, NULL, 0) == osOK) {
|
||
// 成功接收到命令,更新底盘命令
|
||
}
|
||
|
||
Chassis_UpdateFeedback(&chassis);
|
||
Chassis_Control(&chassis, &chassis_cmd);
|
||
|
||
|
||
/* USER CODE END */
|
||
osDelayUntil(tick); /* 运行结束,等待下一次唤醒 */
|
||
}} |