⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wrapper.h

📁 UAV 自动驾驶的
💻 H
字号:
/** *  $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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -