1 Star 0 Fork 1

upczap/vrpn

forked from ianaxe/vrpn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vrpn_VPJoystick.h 754 Bytes
一键复制 编辑 原始数据 按行查看 历史
Russ Taylor 提交于 2015-04-04 14:19 . Fixing compiler warnings on the mac.
#ifndef VRPN_VPJOYSTICK
#define VRPN_VPJOYSTICK 1
#include "vrpn_Button.h" // for VRPN_BUTTON_BUF_SIZE, etc
#include "vrpn_Configure.h" // for VRPN_API
class VRPN_API vrpn_Connection;
#define vrpn_VPJOY_MESSAGE_LENGTH (4)
#define vrpn_VPJOY_NUM_BUTTONS (8)
class VRPN_API vrpn_VPJoystick : public vrpn_Button_Filter {
public:
vrpn_VPJoystick(char* name, vrpn_Connection *c,
const char *port="/dev/ttyS0", long baud=9600);
~vrpn_VPJoystick();
void mainloop();
private:
int serial_fd;
unsigned char message_buffer[ vrpn_VPJOY_MESSAGE_LENGTH ];
unsigned int bytes_read;
unsigned int button_masks[ vrpn_VPJOY_NUM_BUTTONS ];
unsigned int state;
};
#endif // #ifndef VRPN_VPJOYSTICK
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jari/vrpn.git
[email protected]:jari/vrpn.git
jari
vrpn
vrpn
master

搜索帮助