race_ctl.h

来自「BT878 图象显示 VxWorks 驱动程序」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef _Race_Ctl_H_#define _Race_Ctl_H_/* 24+8+6 = 38 bytes */struct race_state{  /* Translational */  int pos;  int vel;  int accel;  /* Rotational */  int yaw;  int yaw_rate;  int yaw_accel;  /* Commands */  int direction;  unsigned short right_servo_cmd;  unsigned short left_servo_cmd;  unsigned short tilt_servo_cmd;  unsigned short pan_servo_cmd;  /* Target Dimensions */  int target;  unsigned short target_size;  unsigned short target_x;  unsigned short target_y;};void race_ctl_cycle(void);void yaw_ctl_cycle(void);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?