wrapper.h
来自「UAV 自动驾驶的」· C头文件 代码 · 共 53 行
H
53 行
/** * $Id: wrapper.h,v 2.0 2002/09/22 02:07:30 tramm Exp $ * * C wrapper for the Controller object. * * You only get one and it is very simple... */#ifndef _wrapper_h_#define _wrapper_h_#ifdef __cplusplusextern "C" {#endifextern intcontroller_reset( const char * hostname, int port);extern voidcontroller_set( double north, double east, double down, double heading);extern intcontroller_connected( void );extern intcontroller_step( double *north, double *east, double *down, double *roll, double *yaw, double *heading);#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?