shoot/User/task/rc_task.c

26 lines
406 B
C
Raw Normal View History

2025-03-12 23:04:18 +08:00
/**
*
*/
#include "TopDefine.h"
#include "attrTask.h"
#include "rc_task.h"
#include "remote_control.h"
extern RC_mess_t RC_mess;
/**
* \brief
*
* \param argument 使
*/
void Task_Rc(void *argument)
{
(void)argument; /* 未使用argument消除警告 */
RC_init();
while(1)
{
RC_WaitNew();
RC_rx_analysis();
}
}