Some documentation updates
This commit is contained in:
parent
9867ad134e
commit
d4d1a59ab1
6 changed files with 44 additions and 7 deletions
8
NEWS
8
NEWS
|
@ -1,9 +1,13 @@
|
|||
xboxdrv 0.6.3 - (??/Jan/2011)
|
||||
=============================
|
||||
|
||||
* chatpad support, enable with --chatpad (special thanks to Jani
|
||||
* chatpad support, enable with --chatpad, special thanks to Jani
|
||||
Virta, Andy Kirkham, dwomac and GAFBlizzard who helped make it
|
||||
possible)
|
||||
possible
|
||||
* cleanup of modifier code
|
||||
* added optional abs:/rel:/key: prefixes to --ui-axismap
|
||||
* fixed multiple bugs that made it impossible to assign events to
|
||||
specific devices
|
||||
|
||||
|
||||
xboxdrv 0.6.2 - (31/Dec/2010)
|
||||
|
|
2
PROTOCOL
2
PROTOCOL
|
@ -295,6 +295,8 @@ Chatpad init:
|
|||
|
||||
Hardware version 1.10, uses 0x01 0x02 for init.
|
||||
Hardware version 1.14, uses 0x09 0x00 for init.
|
||||
0x0114
|
||||
0x0110
|
||||
|
||||
|
||||
Xbox360 Guitar
|
||||
|
|
10
TODO
10
TODO
|
@ -46,6 +46,16 @@ Figure out a way to load custom keymaps:
|
|||
Stuff to do before 0.6.x release:
|
||||
=================================
|
||||
|
||||
* write UIEvent::from_string()
|
||||
|
||||
* find a way to bring back --no-extra-devices, saves typing
|
||||
|
||||
* absolute mouse pointer can be created with:
|
||||
|
||||
ABS_X, ABS_Y, BTN_LEFT
|
||||
|
||||
document that somewhere
|
||||
|
||||
http://www.mp3car.com/vbulletin/input-devices/108554-xbox360-chatpad-awsome-backlit-mini-keyboard-16.html#post1256444
|
||||
|
||||
* change default axis/button map depending on controller type (tricky as
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
0.6.2
|
||||
0.6.3
|
|
@ -5,7 +5,7 @@
|
|||
\\$2 \(la\\$1\(ra\\$3
|
||||
..
|
||||
.if \n(.g .mso www.tmac
|
||||
.TH "xboxdrv " 1 2010-05-05 0.6.2 "User Commands"
|
||||
.TH "xboxdrv " 1 2010-05-05 0.6.3 "User Commands"
|
||||
.SH NAME
|
||||
xboxdrv
|
||||
\- A Xbox/Xbox360 gamepad driver that works in userspace
|
||||
|
@ -37,10 +37,11 @@ well as more complicated things like mouse and keyboard emulation,
|
|||
auto-fire and throttle control emulation.
|
||||
.PP
|
||||
It is also possible for \fBxboxdrv\fR to read input
|
||||
data directly from an event device, this allows you to use the
|
||||
data directly from an event device, this allows to use the
|
||||
configurability of \fBxboxdrv\fR on regular PC
|
||||
joysticks and thus lets \fBxboxdrv\fR serve a
|
||||
similar purpose as \fBjoy2key\fR. See the
|
||||
joysticks, keyboards and mice and thus
|
||||
lets \fBxboxdrv\fR serve a similar purpose
|
||||
as \fBjoy2key\fR. See the
|
||||
option \*(T<\fB\-\-evdev\fR\*(T> below for more information.
|
||||
.PP
|
||||
When a \*(T<\fBCOMMAND\fR\*(T> is provided xboxdrv will launch
|
||||
|
@ -279,6 +280,13 @@ events. An example configuration would look like this:
|
|||
\fBxboxdrv\fR will output on start a full
|
||||
list of event names that the given event device
|
||||
supports.
|
||||
.TP
|
||||
\*(T<\fB\-\-chatpad\fR\*(T>
|
||||
Enables the support for the Xbox360 Chatpad. WARNING:
|
||||
This is preliminary code, it will crash your gamepad
|
||||
when xboxdrv is started multiple times and won't provide
|
||||
proper keymapping for any of the umlauts and special
|
||||
characters.
|
||||
.SS "STATUS OPTIONS"
|
||||
.TP
|
||||
\*(T<\fB\-l\fR\*(T>, \*(T<\fB\-\-led\fR\*(T> \fINUM\fR
|
||||
|
|
|
@ -444,6 +444,19 @@ start=KEY_ESC
|
|||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>--chatpad</option></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Enables the support for the Xbox360 Chatpad. WARNING:
|
||||
This is preliminary code, it will crash your gamepad
|
||||
when xboxdrv is started multiple times and won't provide
|
||||
proper keymapping for any of the umlauts and special
|
||||
characters.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect2>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue