engineering/application/gimbal/gimbal.h

23 lines
258 B
C

#ifndef GIMBAL_H
#define GIMBAL_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief 初始化云台,会被RobotInit()调用
*
*/
void GimbalInit();
/**
* @brief 云台任务
*
*/
void GimbalTask();
#ifdef __cplusplus
}
#endif
#endif // GIMBAL_H