Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Nacon Evol-X Xbox One Controller #305

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
822ff83
Input: xpad - improve name of 8BitDo controller 2dc8:3106
lbschenkel Jan 4, 2023
77966a5
Input: xpad - add support for 8BitDo Ultimate bluetooth/hall effect v…
jdarn Apr 12, 2023
089f19d
Input: xpad - add support for wooting two he (arm)
ProjectSynchro Jun 28, 2023
498b234
Input: xpad - add support for SCUF Instinct
WaferMouse Jul 2, 2023
10b5ae9
Input: xpad - add Black Shark Green Ghost controller support
Nov 22, 2023
f2d3dfa
Input: xpad - Added Hori Racing Wheel Overdrive for Xbox Series X
Kikismine Oct 8, 2024
3e10368
Input: xpad - Add support for Nacon Pro Compact Model NC7271
javichz Oct 8, 2024
6d2232d
Input: xpad - Add support for Xbox ONE liquid metal controller
laundrei Oct 8, 2024
8692318
Input: xpad - Add USB ID for Nacon Revolution5 Pro
StMartin81 Oct 1, 2024
7a4f99c
Input: xpad - added Turtle Beach Recon support
treus Nov 26, 2022
09c9001
xpad: print received packets if DEBUG_VERBOSE
dantob May 9, 2016
ce69020
add code to enable debug outputs
paroj Jul 5, 2015
a0cdcd6
add README.md
paroj Jun 24, 2015
3086066
add stress_urb_out.sh
paroj Sep 27, 2015
56d4f0a
add PR template
paroj Dec 8, 2019
0879222
add CI build
paroj Sep 5, 2022
2964c89
input: xpad - Switch to workqueue for xpad360w button poweroff
DD3Boh Oct 22, 2022
e79082e
Support KEY_RECORD for 8BitDo Pro 2...for Xbox
lbschenkel Jan 9, 2023
8a6548c
Input: xpad - initialize 360 controllers
Oblomov Aug 14, 2021
b8aebb3
Input: xpad - add support for GHL Xbox One controller
dynamix1337 Oct 22, 2022
c379818
enable compilation on pre 6.1 kernels
paroj Oct 9, 2024
8228638
Add support for Nacon Evol-X Xbox One Controller
Matheos96 Dec 20, 2024
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
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!--
If you are adding support for a new generic xpad controller it is sufficient
to update the xpad_table[] array.
The type will be auto-detected in xpad_probe().
Updating the xpad_device[] array is only needed if the controller requires
additional flags like DANCEPAD_MAP_CONFIG to work.

If you are updating any of the above tables, make sure you keep the sorted!

To get attribution for your work when this goes upstream, make sure to use
a real name and a real email address as per:
https://www.kernel.org/doc/html/v4.10/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
-->
19 changes: 19 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
linux:
runs-on: ubuntu-22.04
steps:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y dkms
- uses: actions/checkout@v2
- name: Build
run: |
sudo ln -s `pwd` /usr/src/xpad-0.4
sudo dkms install -m xpad -v 0.4
Loading