Find a file
2010-05-07 02:46:04 +02:00
contrib hal daemon from Thomas Debouverie <debouverie_thomas@yahoo.fr> 2009-02-19 14:10:06 +01:00
directx directX experimentation 2008-06-12 17:06:11 +02:00
doc Some more docu 2010-05-07 02:46:04 +02:00
hal Some more stuff 2009-02-19 16:56:48 +01:00
src Removed 045e:0x00db, thats a Microsoft keyboard, not a Xbox360 controller 2010-05-06 22:18:33 +02:00
tools Version update, release ready 2009-02-21 12:51:55 +01:00
.gitignore Some more git ignore 2009-07-29 17:08:34 +02:00
AUTHORS Docu updates 2008-11-06 15:41:12 +01:00
COPYING - added copying 2008-04-11 00:06:07 +02:00
install.sh Added install script 2010-05-07 02:45:11 +02:00
NEWS TODO, README, NEWS updates 2010-05-01 20:18:44 +02:00
PROTOCOL More docu 2009-01-07 07:07:42 +01:00
README Moved remaining info from README to the man page 2010-05-06 21:48:33 +02:00
SConstruct Updated NEWS, added some more warning flags to SConstruct 2010-05-01 01:34:34 +02:00
TODO TODO, README, NEWS updates 2010-05-01 20:18:44 +02:00

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[[ Xbox/Xbox360 USB Gamepad Driver for Userspace ]]
===================================================

This is a Xbox/Xbox360 gamepad driver for Linux that works in
userspace. It is an alternative to the xpad kernel driver and has
support for Xbox1 gamepads, Xbox360 USB gamepads and Xbox360 wireless
gamepads. The Xbox360 guitar and some Xbox1 dancemats might work too.
The Xbox 360 racing wheel is not supported, but shouldn't be to hard
to add if somebody is interested.

The Xbox360 chatpad does currently not work and the headset does
neither. There has been some work on reverse enginiering, but no
usable results.

This driver is only of interest if the xpad kernel driver doesn't work
for you or if you want more configurabity. If the xpad kernel driver
works for you there is no need to try this driver.

Newest version of the driver can be found at:

 * http://pingus.seul.org/~grumbel/xboxdrv/

The development version can be optained via:

 * git clone http://pingus.seul.org/~grumbel/xboxdrv.git


[[ Compilation ]]
-----------------

Required libraries and tools:

 * g++ - GNU C++ Compiler
 * libusb
 * boost
 * scons
 * uinput (userspace input kernel module)
 * git (only to download the development version)
 * X11
 * python-dbus (for xboxdrv-daemon.py)

Once everything installed, you can compile by typing:

 % scons

On Ubuntu 9.10 you can install all the required libraries via:

 % apt-get install \
     g++ \
     libboost1.40-dev \
     libboost-thread1.40-dev \
     scons \
     libusb-dev \
     git-core \
     libx11-dev \
     x11proto-core-dev \
     python-dbus

To load the uinput kernel module automatically on boot add it
/etc/modules, to load it manually type:

 % sudo modprobe uinput

On other distributions exact install instructions might be
slightly different.

Running InputDrv
----------------

The programs src/inputdrv and gui/inputcfg.py are part of an experiment to
create a very flexible input configuration framework. They are still
in development and not of any use unless you want to hack the
source. Their compilation is disabled by default.

# EOF #