Find a file
2011-01-30 18:13:23 +01:00
doc Provide BUS:DEV, VENDOR:PRODUCT and NAME as argument to the connect/disconnect scripts 2011-01-30 17:21:05 +01:00
examples Some more docu updates 2011-01-29 22:44:52 +01:00
hal Some more stuff 2009-02-19 16:56:48 +01:00
runxboxdrv New version of runxboxdrv 2011-01-28 17:27:32 +01:00
src Improved output 2011-01-30 18:13:23 +01:00
test Improved output 2011-01-30 18:13:23 +01:00
tools Fixed missing includes 2011-01-13 22:45:34 +01:00
.gitignore Removed unnecessary #include directives 2011-01-22 04:13:13 +01:00
AUTHORS Some more chatpad work 2011-01-02 19:12:32 +01:00
chatpad.xkb Use currency symbol for Microsoft Points symbol (see Wikipedia on currency symbol) 2011-01-10 18:32:04 +01:00
COPYING - added copying 2008-04-11 00:06:07 +02:00
Makefile Added a Makefile to replace install.sh 2010-05-14 04:23:02 +02:00
NEWS TODO & NEWS updates 2011-01-30 03:55:47 +01:00
PROTOCOL Some documentation updates 2011-01-02 23:56:10 +01:00
README Added missing includes and fixed issue with older versions of libudev 2011-01-28 00:01:52 +01:00
SConstruct Split axisfilter and buttonfilter into their own separate files 2011-01-27 04:08:28 +01:00
TODO TODO & NEWS updates 2011-01-30 03:55:47 +01:00
VERSION VERSION, NEWS and TODO update 2011-01-28 18:12:16 +01:00
xboxdrv-daemon Moved some stuff to examples/ 2011-01-27 20:40:46 +01: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 ]]
===================================================

Xboxdrv 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.

Some basic support for the Xbox360 Chatpad on USB controller is
provided, Chatpad on wireless ones is not supported. The headset is
not supported, but you can dump raw data from it.

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-1.0
 * pkg-config
 * libudev
 * 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 10.10 you can install all the required libraries via:

 $ sudo apt-get install \
     g++ \
     libboost1.42-dev \
     libboost-thread1.42-dev \
     scons \
     pkg-config \
     libusb-1.0-0-dev \
     git-core \
     libx11-dev \
     libudev-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.


[[ Installation ]]
------------------

Once the compilation process is complete you can install xboxdrv with:

 $ make install

You can also change the install PREFIX and DESTDIR as usual with:

 $ make install PREFIX=/usr DESTDIR=/tmp

Note that there is no need to install xboxdrv, you can run it directly
from the source directory if you prefer.


[[ Running ]]
-------------

Extensive documentation on running xboxdrv can be found in the RUNNING
XBOXDRV section of the xboxdrv manpage. When you haven't installed
xboxdrv the man page can be found in doc/xboxdrv.1 and be read with:

 $ man -l doc/xboxdrv.1

Documentation on xboxdrv-daemon, a daemon that will automatically
launch xboxdrv when a pad is plugged in can be read via:

 $ man -l doc/xboxdrv-daemon.1


# EOF #