arm/User/task/rc.c

100 lines
2.9 KiB
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
rc Task
*/
/* Includes ----------------------------------------------------------------- */
#include "task/user_task.h"
#include "bsp/uart.h"
/* USER INCLUDE BEGIN */
#define DR16
#ifdef AT9S
#include "device/at9s_pro.h"
#endif
#ifdef DR16
#include "device/dr16.h"
#endif
/* USER INCLUDE END */
/* Private typedef ---------------------------------------------------------- */
/* Private define ----------------------------------------------------------- */
/* Private macro ------------------------------------------------------------ */
/* Private variables -------------------------------------------------------- */
/* USER STRUCT BEGIN */
#ifdef AT9S
uint8_t cmd_buffer[AT9S_FRAME_LEN];
AT9S_t at9s;
#endif
#ifdef DR16
// 将DR16变量放到RAM_D1用于DMA传输并保证32字节对齐以支持Cache操作
// __attribute__((section(".ram_d1"))) __attribute__((aligned(32)))
DR16_t dr16;
static DR16_SwitchPos_t last_sw_l = DR16_SW_ERR; /* 记录左拨杆上一次状态 */
#endif
extern bool reset;
#include "stm32f4xx.h"
/* USER STRUCT END */
/* Private function --------------------------------------------------------- */
/* Exported functions ------------------------------------------------------- */
void Task_rc(void *argument) {
(void)argument; /* 未使用argument消除警告 */
/* 计算任务运行到指定频率需要等待的tick数 */
const uint32_t delay_tick = osKernelGetTickFreq() / RC_FREQ;
osDelay(RC_INIT_DELAY); /* 延时一段时间再开启任务 */
uint32_t tick = osKernelGetTickCount(); /* 控制任务运行频率的计时 */
/* USER CODE INIT BEGIN */
#ifdef AT9S
AT9S_Init(&at9s);
AT9S_StartDmaRecv(cmd_buffer);
#endif
#ifdef DR16
DR16_Init(&dr16);
DR16_StartDmaRecv(&dr16); // 立即启动第一次接收
#endif
/* USER CODE INIT END */
while (1) {
tick += delay_tick; /* 计算下一个唤醒时刻 */
/* USER CODE BEGIN */
#ifdef AT9S
if (AT9S_WaitDmaCplt(10)) {
AT9S_ParseRaw(cmd_buffer, &at9s);
AT9S_StartDmaRecv(cmd_buffer);
}
osMessageQueuePut(task_runtime.msgq.cmd.rc, &at9s, 0, 0);
#endif
#ifdef DR16
// 等待DMA接收完成
if (DR16_WaitDmaCplt(20)) {
DR16_ParseData(&dr16);
} else {
DR16_Offline(&dr16);
}
osMessageQueueReset(task_runtime.msgq.cmd.rc);
osMessageQueuePut(task_runtime.msgq.cmd.rc, &dr16, 0, 0);
// 启动下一次DMA接收
DR16_StartDmaRecv(&dr16);
if (dr16.header.online) {
/* 拨杆从非UP状态切换到UP状态且复位功能已使能触发系统复位 */
if (
dr16.data.sw_l == DR16_SW_UP &&
last_sw_l != DR16_SW_UP && last_sw_l != DR16_SW_ERR) {
reset=!reset;
}
last_sw_l = dr16.data.sw_l; /* 更新拨杆状态 */
}
#endif
/* USER CODE END */
osDelayUntil(tick); /* 运行结束,等待下一次唤醒 */
}
}