joystick.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:20k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1.        Linux Joystick driver v2.0.0
  2.        (c) 1996-2000 Vojtech Pavlik <vojtech@suse.cz>
  3.      Sponsored by SuSE
  4.    $Id: joystick.txt,v 1.6 2001/06/05 09:57:01 vojtech Exp $
  5. ----------------------------------------------------------------------------
  6. 0. Disclaimer
  7. ~~~~~~~~~~~~~
  8.   This program is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 2 of the License, or (at your option)
  11. any later version.
  12.   This program is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  15. more details.
  16.   You should have received a copy of the GNU General Public License along
  17. with this program; if not, write to the Free Software Foundation, Inc., 59
  18. Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19.   Should you need to contact me, the author, you can do so either by e-mail
  20. - mail your message to <vojtech@suse.cz>, or by paper mail: Vojtech Pavlik,
  21. Ucitelska 1576, Prague 8, 182 00 Czech Republic
  22.   For your convenience, the GNU General Public License version 2 is included
  23. in the package: See the file COPYING.
  24. 1. Intro
  25. ~~~~~~~~
  26.   The joystick driver for Linux provides support for a variety of joysticks
  27. and similar devices. It is based on a larger project aiming to support all
  28. input devices in Linux.
  29.   Should you encounter any problems while using the driver, or joysticks
  30. this driver can't make complete use of, I'm very interested in hearing about
  31. them. Bug reports and success stories are also welcome.
  32.   The input project website is at:
  33. http://www.suse.cz/development/input/
  34. http://atrey.karlin.mff.cuni.cz/~vojtech/input/
  35.   There is also a mailing list for the driver at:
  36. listproc@atrey.karlin.mff.cuni.cz
  37. send "subscribe linux-joystick Your Name" to subscribe to it.
  38. 2. Usage
  39. ~~~~~~~~
  40.   For basic usage you just choose the right options in kernel config and
  41. you should be set.
  42. 2.1 inpututils
  43. ~~~~~~~~~~~~~~
  44. For testing and other purposes (for example serial devices), a set of
  45. utilities is available at the abovementioned website. I suggest you download
  46. and install it before going on.
  47. 2.2 Device nodes
  48. ~~~~~~~~~~~~~~~~
  49. For applications to be able to use the joysticks, in you don't use devfs,
  50. you'll have to manually create these nodes in /dev:
  51. cd /dev
  52. rm js*
  53. mkdir input
  54. mknod input/js0 c 13 0
  55. mknod input/js1 c 13 1
  56. mknod input/js2 c 13 2
  57. mknod input/js3 c 13 3
  58. ln -s input/js0 js0
  59. ln -s input/js1 js1
  60. ln -s input/js2 js2
  61. ln -s input/js3 js3
  62. For testing with inpututils it's also convenient to create these:
  63. mknod input/event0 c 13 64
  64. mknod input/event1 c 13 65
  65. mknod input/event2 c 13 66
  66. mknod input/event3 c 13 67
  67. 2.4 Modules needed 
  68. ~~~~~~~~~~~~~~~~~~
  69.   For all joystick drivers to function, you'll need the userland interface
  70. module in kernel, either loaded or compiled in:
  71. modprobe joydev
  72.   For gameport joysticks, you'll have to load the gameport driver as well;
  73. modprobe ns558
  74.   And for serial port joysticks, you'll need the serial input line
  75. discipline module loaded and the inputattach utility started:
  76. modprobe serport
  77. inputattach -xxx /dev/tts/X &
  78.   In addition to that, you'll need the joystick driver module itself, most
  79. usually you'll have an analog joystick:
  80. modprobe analog
  81.   For automatic module loading, something like this might work - tailor to
  82. your needs:
  83. alias tty-ldisc-2 serport
  84. alias char-major-13 input
  85. above input joydev ns558 analog
  86. options analog js=gameport
  87. 2.5 Verifying that it works
  88. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  89.   For testing the joystick driver functionality, there is the jstest
  90. program in the utilities package. You run it by typing:
  91. jstest /dev/js0
  92.   And it should show a line with the joystick values, which update as you
  93. move the stick, and press its buttons. The axes should all be zero when the
  94. joystick is in the center position. They should not jitter by themselves to
  95. other close values, and they also should be steady in any other position of
  96. the stick. They should have the full range from -32767 to 32767. If all this
  97. is met, then it's all fine, and you can play the games. :)
  98.   If it's not, then there might be a problem. Try to calibrate the joystick,
  99. and if it still doesn't work, read the drivers section of this file, the
  100. troubleshooting section, and the FAQ.
  101. 2.6. Calibration
  102. ~~~~~~~~~~~~~~~~
  103.   For most joysticks you won't need any manual calibration, since the
  104. joystick should be autocalibrated by the driver automagically. However, with
  105. some analog joysticks, that either do not use linear resistors, or if you
  106. want better precision, you can use the jscal program
  107. jscal -c /dev/js0
  108.  included in the joystick package to set better correction coefficients than
  109. what the driver would choose itself.
  110.   After calibrating the joystick you can verify if you like the new
  111. calibration using the jstest command, and if you do, you then can save the
  112. correction coefficients into a file
  113. jscal -p /dev/js0 > /etc/joystick.cal
  114.   And add a line to your rc script executing that file
  115. source /etc/joystick.cal
  116.   This way, after the next reboot your joystick will remain calibrated. You
  117. can also add the jscal -p line to your shutdown script.
  118. 3. HW specific driver information
  119. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  120. In this section each of the separate hardware specific drivers is described.
  121. 3.1 Analog joysticks
  122. ~~~~~~~~~~~~~~~~~~~~
  123.   The analog.c uses the standard analog inputs of the gameport, and thus
  124. supports all standard joysticks and gamepads. It uses a very advanced
  125. routine for this, allowing for data precision that can't be found on any
  126. other system.
  127.   It also supports extensions like additional hats and buttons compatible
  128. with CH Flightstick Pro, ThrustMaster FCS or 6 and 8 button gamepads. Saitek
  129. Cyborg 'digital' joysticks are also supported by this driver, because
  130. they're basically souped up CHF sticks.
  131.   However the only types that can be autodetected are:
  132. * 2-axis, 4-button joystick
  133. * 3-axis, 4-button joystick
  134. * 4-axis, 4-button joystick
  135. * Saitek Cyborg 'digital' joysticks
  136.   For other joystick types (more/less axes, hats, and buttons) support
  137. you'll need to specify the types either on the kernel command line or on the
  138. module command line, when inserting analog.o into the kernel. The
  139. parameters are:
  140. js=type,type,type,....
  141.   'type' is type of the joystick from the table below, defining joysticks
  142. present on gameports in the system, starting with gameport0, second 'type'
  143. entry defining joystick on gameport1 and so on.
  144. Type     | Meaning
  145. -----------------------------------
  146. none     | No analog joystick on that port
  147. auto     | Autodetect joystick
  148. 2btn     | 2-button n-axis joystick
  149. y-joy    | Two 2-button 2-axis joysticks on an Y-cable
  150. y-pad    | Two 2-button 2-axis gamepads on an Y-cable
  151. fcs      | Thrustmaster FCS compatible joystick
  152. chf      | Joystick with a CH Flightstick compatible hat
  153. fullchf  | CH Flightstick compatible with two hats and 6 buttons
  154. gamepad  | 4/6-button n-axis gamepad
  155. gamepad8 | 8-button 2-axis gamepad
  156.   In case your joystick doesn't fit in any of the above categories, you can
  157. specify the type as a number by combining the bits in the table below. This
  158. is not recommended unless you really know what are you doing. It's not
  159. dangerous, but not simple either.
  160. Bit | Meaning
  161. --------------------------
  162.  0  | Axis X1
  163.  1  | Axis Y1
  164.  2  | Axis X2
  165.  3  | Axis Y2
  166.  4  | Button A
  167.  5  | Button B
  168.  6  | Button C
  169.  7  | Button D
  170.  8  | CHF Buttons X and Y
  171.  9  | CHF Hat 1
  172. 10  | CHF Hat 2
  173. 11  | FCS Hat
  174. 12  | Pad Button X
  175. 13  | Pad Button Y
  176. 14  | Pad Button U
  177. 15  | Pad Button V
  178. 16  | Saitek F1-F4 Buttons
  179. 17  | Saitek Digital Mode
  180. 19  | GamePad
  181. 20  | Joy2 Axis X1
  182. 21  | Joy2 Axis Y1
  183. 22  | Joy2 Axis X2
  184. 23  | Joy2 Axis Y2
  185. 24  | Joy2 Button A
  186. 25  | Joy2 Button B
  187. 26  | Joy2 Button C
  188. 27  | Joy2 Button D
  189. 31  | Joy2 GamePad
  190. 3.2 Microsoft SideWinder joysticks
  191. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  192.   Microsoft 'Digital Overdrive' protocol is supported by the sidewinder.c
  193. module. All currently supported joysticks:
  194. * Microsoft SideWinder 3D Pro
  195. * Microsoft SideWinder Force Feedback Pro
  196. * Microsoft SideWinder Force Feedback Wheel
  197. * Microsoft SideWinder FreeStyle Pro 
  198. * Microsoft SideWinder GamePad (up to four, chained)
  199. * Microsoft SideWinder Precision Pro 
  200. * Microsoft SideWinder Precision Pro USB 
  201.   are autodetected, and thus no module parameters are needed.
  202.   There is one caveat with the 3D Pro. There are 9 buttons reported,
  203. although the joystick has only 8. The 9th button is the mode switch on the
  204. rear side of the joystick. However, moving it, you'll reset the joystick,
  205. and make it unresponsive for about a one third of a second. Furthermore, the
  206. joystick will also re-center itself, taking the position it was in during
  207. this time as a new center position. Use it if you want, but think first.
  208.   The SideWinder Standard is not a digital joystick, and thus is supported
  209. by the analog driver described above. 
  210. 3.3 Logitech ADI devices
  211. ~~~~~~~~~~~~~~~~~~~~~~~~
  212.   Logitech ADI protocol is supported by the adi.c module. It should support
  213. any Logitech device using this protocol. This includes, but is not limited
  214. to:
  215. * Logitech CyberMan 2
  216. * Logitech ThunderPad Digital
  217. * Logitech WingMan Extreme Digital
  218. * Logitech WingMan Formula
  219. * Logitech WingMan Interceptor
  220. * Logitech WingMan GamePad
  221. * Logitech WingMan GamePad USB
  222. * Logitech WingMan GamePad Extreme
  223. * Logitech WingMan Extreme Digital 3D
  224.   ADI devices are autodetected, and the driver supports up to two (any
  225. combination of) devices on a single gameport, using an Y-cable or chained
  226. together.
  227.   Logitech WingMan Joystick, Logitech WingMan Attack, Logitech WingMan
  228. Extreme and Logitech WingMan ThunderPad are not digital joysticks and are
  229. handled by the analog driver described above. Logitech WingMan Warrior and
  230. Logitech Magellan are supported by serial drivers described below.  Logitech
  231. WingMan Force and Logitech WingMan Formula Force are supported by the
  232. I-Force driver described below. Logitech CyberMan is not supported yet.
  233. 3.4 Gravis GrIP
  234. ~~~~~~~~~~~~~~~
  235.   Gravis GrIP protocol is supported by the grip.c module. It currently
  236. supports:
  237. * Gravis GamePad Pro
  238. * Gravis BlackHawk Digital
  239. * Gravis Xterminator
  240. * Gravis Xterminator DualControl
  241.   All these devices are autodetected, and you can even use any combination
  242. of up to two of these pads either chained together or using an Y-cable on a
  243. single gameport.
  244. GrIP MultiPort isn't supported yet. Gravis Stinger is a serial device and is
  245. supported by the stinger driver. Other Gravis joysticks are supported by the
  246. analog driver.
  247. 3.5 FPGaming A3D and MadCatz A3D
  248. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  249.   The Assassin 3D protocol created by FPGaming, is used both by FPGaming
  250. themselves and is licensed to MadCatz. A3D devices are supported by the
  251. a3d.c module. It currently supports:
  252. * FPGaming Assassin 3D
  253. * MadCatz Panther
  254. * MadCatz Panther XL
  255.   All these devices are autodetected. Because the Assassin 3D and the Panther
  256. allow connecting analog joysticks to them, you'll need to load the analog
  257. driver as well to handle the attached joysticks.
  258.   The trackball should work with USB mousedev module as a normal mouse. See
  259. the USB documentation for how to setup an USB mouse.
  260. 3.6 ThrustMaster DirectConnect (BSP)
  261. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  262.   The TM DirectConnect (BSP) protocol is supported by the tmdc.c
  263. module. This includes, but is not limited to:
  264. * ThrustMaster Millenium 3D Inceptor
  265. * ThrustMaster 3D Rage Pad
  266. * ThrustMaster Fusion Digital Game Pad
  267.   Devices not directly supported, but hopefully working are:
  268. * ThrustMaster FragMaster
  269. * ThrustMaster Attack Throttle
  270.   If you have one of these, contact me.
  271.   TMDC devices are autodetected, and thus no parameters to the module
  272. are needed. Up to two TMDC devices can be connected to one gameport, using
  273. an Y-cable.
  274. 3.7 Creative Labs Blaster
  275. ~~~~~~~~~~~~~~~~~~~~~~~~~
  276.   The Blaster protocol is supported by the cobra.c module. It supports only
  277. the:
  278. * Creative Blaster GamePad Cobra
  279.   Up to two of these can be used on a single gameport, using an Y-cable.
  280. 3.8 Genius Digital joysticks 
  281. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  282.   The Genius digitally communicating joysticks are supported by the gf2k.c
  283. module. This includes:
  284. * Genius Flight2000 F-23 joystick 
  285. * Genius Flight2000 F-31 joystick 
  286. * Genius G-09D gamepad
  287.   Other Genius digital joysticks are not supported yet, but support can be
  288. added fairly easily.
  289. 3.9 InterAct Digital joysticks
  290. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  291.   The InterAct digitally communicating joysticks are supported by the
  292. interact.c module. This includes:
  293. * InterAct HammerHead/FX gamepad
  294. * InterAct ProPad8 gamepad 
  295.   Other InterAct digital joysticks are not supported yet, but support can be 
  296. added fairly easily.
  297. 3.10 PDPI Lightning 4 gamecards
  298. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  299.   PDPI Lightning 4 gamecards are supported by the lightning.c module.
  300. Once the module is loaded, the analog driver can be used to handle the
  301. joysticks. Digitally communicating joystick will work only on port 0, while
  302. using Y-cables, you can connect up to 8 analog joysticks to a single L4
  303. card, 16 in case you have two in your system.
  304. 3.11 Trident 4DWave / Aureal Vortex
  305. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  306.   Soundcards with a Trident 4DWave DX/NX or Aureal Vortex/Vortex2 chipsets
  307. provide an "Enhanced Game Port" mode where the soundcard handles polling the
  308. joystick.  This mode is supported by the pcigame.c module. Once loaded the
  309. analog driver can use the enhanced features of these gameports..
  310. 3.13 Crystal SoundFusion
  311. ~~~~~~~~~~~~~~~~~~~~~~~~
  312.   Soundcards with Crystal SoundFusion chipsets provide an "Enhanced Game
  313. Port", much like the 4DWave or Vortex above. This, and also the normal mode
  314. for the port of the SoundFusion is supported by the cs461x.c module.
  315. 3.14 SoundBlaster Live!
  316. ~~~~~~~~~~~~~~~~~~~~~~~~
  317.   The Live! has a special PCI gameport, which, although it doesn't provide
  318. any "Enhanced" stuff like 4DWave and friends, is quite a bit faster than
  319. it's ISA counterparts. It also requires special support, hence the
  320. emu10k1-gp.c module for it instead of the normal ns558.c one.
  321. 3.15 SoundBlaster 64 and 128 - ES1370 and ES1371, ESS Solo1 and S3 SonicVibes
  322. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  323.   These PCI soundcards have specific gameports. They are handled by the
  324. sound drivers themselves. Make sure you select gameport support in the
  325. joystick menu and sound card support in the sound menu for your appropriate
  326. card.
  327. 3.16 Amiga
  328. ~~~~~~~~~~
  329.   Amiga joysticks, connected to an Amiga, are supported by the amijoy.c
  330. driver. Since they can't be autodetected, the driver has a command line.
  331. amijoy=a,b
  332.   a and b define the joysticks connected to the JOY0DAT and JOY1DAT ports of
  333. the Amiga.
  334. Value | Joystick type
  335. ---------------------
  336.   0   | None
  337.   1   | 1-button digital joystick
  338.   No more joystick types are supported now, but that should change in the
  339. future if I get an Amiga in the reach of my fingers.
  340. 3.17 Game console and 8-bit pads and joysticks
  341. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  342. See joystick-parport.txt for more info.
  343. 3.18 SpaceTec/LabTec devices
  344. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  345.   SpaceTec serial devices communicate using the SpaceWare protocol. It is
  346. supported by the spaceorb.c and spaceball.c drivers. The devices currently
  347. supported by spaceorb.c are:
  348. * SpaceTec SpaceBall Avenger
  349. * SpaceTec SpaceOrb 360
  350. Devices currently supported by spaceball.c are:
  351. * SpaceTec SpaceBall 4000 FLX
  352.   In addition to having the spaceorb/spaceball and serport modules in the
  353. kernel, you also need to attach a serial port to it. to do that, run the
  354. inputattach program:
  355. inputattach --spaceorb /dev/tts/x &
  356. or
  357. inputattach --spaceball /dev/tts/x &
  358. where /dev/tts/x is the serial port which the device is connected to. After
  359. doing this, the device will be reported and will start working.
  360.   There is one caveat with the SpaceOrb. The button #6, the on the bottom
  361. side of the orb, although reported as an ordinary button, causes internal
  362. recentering of the spaceorb, moving the zero point to the position in which
  363. the ball is at the moment of pressing the button. So, think first before
  364. you bind it to some other function.
  365. SpaceTec SpaceBall 2003 FLX and 3003 FLX are not supported yet. 
  366. 3.19 Logitech SWIFT devices
  367. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  368.   The SWIFT serial protocol is supported by the warrior.c module. It
  369. currently supports only the:
  370. * Logitech WingMan Warrior
  371. but in the future, Logitech CyberMan (the original one, not CM2) could be
  372. supported as well. To use the module, you need to run inputattach after you
  373. insert/compile the module into your kernel:
  374. inputattach --warrior /dev/tts/x &
  375. /dev/tts/x is the serial port your Warrior is attached to.
  376. 3.20 Magellan / Space Mouse
  377. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  378.   The Magellan (or Space Mouse), manufactured by LogiCad3d (formerly Space
  379. Systems), for many other companies (Logitech, HP, ...) is supported by the
  380. joy-magellan module. It currently supports only the:
  381. * Magellan 3D
  382. * Space Mouse
  383. models, the additional buttons on the 'Plus' versions are not supported yet.
  384.   To use it, you need to attach the serial port to the driver using the
  385. inputattach --magellan /dev/tts/x &
  386. command. After that the Magellan will be detected, initialized, will beep,
  387. and the /dev/input/jsX device should become usable.
  388. 3.21 I-Force devices 
  389. ~~~~~~~~~~~~~~~~~~~~
  390.   All I-Force devices are supported by the iforce.c module. This includes:
  391. * AVB Mag Turbo Force
  392. * AVB Top Shot Pegasus
  393. * Logitech WingMan Force
  394. * Logitech WingMan Force 3D
  395. * Logitech WingMan Force Wheel 
  396. * Logitech WingMan Strike Force 3D
  397. * Guillemot Race Leader Force Feedback
  398.   To use it, you need to attach the serial port to the driver using the
  399. inputattach --iforce /dev/tts/x &
  400. command. After that the I-Force device will be detected, and the
  401. /dev/input/jsX device should become usable.
  402.   In case you're using the device via the USB port, the inputattach command
  403. isn't needed.
  404.   The I-Force driver now supports force feedback via the event interface.
  405. 3.22 Gravis Stinger gamepad 
  406. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  407.   The Gravis Stinger serial port gamepad, designed for use with laptop
  408. computers, is supported by the stinger.c module. To use it, attach the
  409. serial port to the driver using:
  410.         inputattach --stinger /dev/tty/x &
  411. where x is the number of the serial port.
  412. 4. Troubleshooting
  413. ~~~~~~~~~~~~~~~~~~
  414.   There is quite a high probability that you run into some problems. For
  415. testing whether the driver works, if in doubt, use the jstest utility in
  416. some of its modes. The most useful modes are "normal" - for the 1.x
  417. interface, and "old" for the "0.x" interface. You run it by typing:
  418. jstest --normal /dev/input/js0
  419. jstest --old    /dev/input/js0
  420.   Additionally you can do a test with the evtest utility:
  421. evtest /dev/input/event0
  422.   Oh, and read the FAQ! :)
  423. 5. FAQ
  424. ~~~~~~
  425. Q: Running 'jstest /dev/js0' results in "File not found" error. What's the
  426.    cause?
  427. A: The device files don't exist. Create them (see section 2.2).
  428. Q: Is it possible to connect my old Atari/Commodore/Amiga/console joystick
  429.    or pad that uses a 9-pin D-type cannon connector to the serial port of my
  430.    PC?
  431. A: Yes, it is possible, but it'll burn your serial port or the pad. It
  432.    won't work, of course.
  433. Q: My joystick doesn't work with Quake / Quake 2. What's the cause?
  434. A: Quake / Quake 2 don't support joystick. Use joy2key to simulate keypresses
  435.    for them.
  436. 6. Programming Interface
  437. ~~~~~~~~~~~~~~~~~~~~~~~~
  438.   The 1.0 driver uses a new, event based approach to the joystick driver.
  439. Instead of the user program polling for the joystick values, the joystick
  440. driver now reports only any changes of its state. See joystick-api.txt,
  441. joystick.h and jstest.c included in the joystick package for more
  442. information. The joystick device can be used in either blocking or
  443. nonblocking mode and supports select() calls.
  444.   For backward compatibility the old (v0.x) interface is still included.
  445. Any call to the joystick driver using the old interface will return values
  446. that are compatible to the old interface.  This interface is still limited
  447. to 2 axes, and applications using it usually decode only 2 buttons, although
  448. the driver provides up to 32.