Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5455932
v0.6.0
atar-axis Mar 31, 2019
c2260da
- switched back to disable_ff, see #88
atar-axis Mar 31, 2019
70acfc0
fix: parameter names
atar-axis Apr 7, 2019
51fdd76
fix: wrong operator
atar-axis Apr 7, 2019
600b47c
Merge branch 'master' into enable_ff
atar-axis Apr 27, 2019
cc6b888
fixed: @DO_NOT_CHANGE@
atar-axis Apr 27, 2019
637adb3
added description for disable_ff
atar-axis Apr 27, 2019
10a4fc4
vmouse init
atar-axis May 8, 2019
d0f7f02
merged master into vmouse
atar-axis May 9, 2019
3d4ae36
merged master into vmouse, fix
atar-axis May 9, 2019
6b3f97d
Merge branch 'master' of https://github.com/atar-axis/xpadneo into vm…
atar-axis May 9, 2019
ff653b6
press and hold the XBOX-Button for at least one second to active the …
atar-axis May 9, 2019
97daa05
added force feedback when enabling the mouse mode (press the XBOX but…
atar-axis May 10, 2019
9f9d6e4
* add: (A) ist left mouse_click in mouse mode
atar-axis May 10, 2019
b6f495b
* fix: when the installation is aborted the @DO_NOT_CHANGE@ version s…
atar-axis May 10, 2019
ba64977
* tweak: cleaned sourcecode a bit
atar-axis May 10, 2019
ae0af04
* fix: removed the click value msg from dmesg
atar-axis May 10, 2019
4c941eb
* add: rightclick on button (B)
atar-axis May 11, 2019
92471ac
changed version 0.7
atar-axis May 12, 2019
a08beb5
added version.h functions/macros
atar-axis May 13, 2019
f5014dc
Merge remote-tracking branch 'origin/master' into vmouse
atar-axis May 15, 2019
f20dc05
vmouse only on kernel >= 4.14.0
atar-axis May 15, 2019
11982ff
removed .sh udev copy
atar-axis May 15, 2019
263242b
* added: deactivate GP events in mouse mode
atar-axis May 20, 2019
c134af5
* added: right stick as scrolling wheel
atar-axis May 22, 2019
68b51ec
* tweaked: scrolling speed
atar-axis May 22, 2019
73e7e44
* fixed: wrong divider
atar-axis May 22, 2019
c79408f
* tweaked: removed scrolling speed again
atar-axis May 22, 2019
fbd0ec0
* tweaked: do not depend on vmouse but use it only if it is available
atar-axis May 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.7.0
7 changes: 3 additions & 4 deletions hid-xpadneo/dkms.post_install
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
#!/bin/sh
echo "Disabling ERTM permanently (requires reboot)..."
echo "* disabling ERTM permanently (requires reboot)..."
echo "options bluetooth disable_ertm=y" > /etc/modprobe.d/99-xpadneo-bluetooth.conf

echo "Diabling ERTM instantly..."
echo "* diabling ERTM instantly..."
echo "y" > /sys/module/bluetooth/parameters/disable_ertm

echo "Installing UDEV rule to automatically bind xpadneo (necessary on kernel < 4.16 and >= 4.20)..."
echo "* installing UDEV rule to automatically bind xpadneo (necessary on kernel < 4.16 and >= 4.20)..."
cp ./src/udev_rules/99-xpadneo.rules /etc/udev/rules.d/
cp ./src/udev_rules/xpadneo.sh /etc/udev/rules.d/
udevadm control --reload # not necessary, we do it anyway
Loading