Infantry/User/module/remote_cmd.h
yunhai8432 054430fe49 touch README.md
git init
git checkout -b main
git add README.md
git commit -m "first commit"
git remote add origin ssh://git@gitea.qutrobot.top:222/yunhai/Infantry.git
git push -u origin main
2026-01-09 09:50:07 +08:00

24 lines
386 B
C

/*
* cmd模组
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ----------------------------------------------------------------- */
#include "component\user_math.h"
#include "gimbal.h"
#include "shoot.h"
#include "dr16.h"
int8_t Gimbal_Cmd(Gimbal_CMD_t *g_cmd,DR16_t *dr16) ;
int8_t Shoot_Cmd(Shoot_CMD_t *s_cmd,DR16_t *dr16) ;
#ifdef __cplusplus
}
#endif