Xbox One Pro Ex Controller Driver 81

Join GitHub today

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

8) In Device Manager, right-click on the device and click Update Driver Software 9) Click Search automatically for Updated driver software. Then Windows will install a new driver automatically. IMPORTANT: To install the Microsoft Xbox One Controller driver successfully, ensure that you have installed the latest.net framework 4.5. FLASH SALE: Driver Booster 6 PRO 60% OFF! The package provides the installation files for Microsoft Xbox 360 Controller Driver version 1.2.

Sign up 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

Comments

commented Aug 29, 2016
edited by paroj

I'm trying to get a third party controller working.

So I've cloned the repo and built the dkms module and the controller is showing up as an interface under /dev/input/js0 - however I'm getting no input from the controller whatsoever.

Running the jstest utility brings up some info - but appears to be entirely unresponsive to any buttons pressed on the pad.

Looking at the source code, in particular xpad.c the controller should be support by vendorid and productid { 0x24c6, 0x543a, 'PowerA Xbox One wired controller', 0, XTYPE_XBOXONE },

Can anyone help?

commented Sep 2, 2016

Same Issue.

commented Sep 3, 2016

can you try again with latest master?

commented Sep 4, 2016

@paroj I did use the latest master 2 days ago. But unfortunately; I was upset by broken MS crap. SO I took them back and got 2 steam controllers today before I saw this comment. Sorry otherwise I would have pulled it down again and tested the changes.

commented Sep 4, 2016

the last 3 commits on Sep 3, 2016 improve xpad one support.
The issue probably is a new firmware on the controllers which needs the updated handling that was implemented in the last commits.

commented Dec 26, 2016

I'm encountering this same issue (the controller is recognized, but no input is detected.) I also have an earlier Power A Xbox One controller lying around which does work. I'm attaching the output of dmesg and lsusb for both.

Long story short, the two controllers have the same vendor and product ID (24c6 and 543a), but different names ('XBox ONE Pro Ex controller' works, while 'XBox ONE liquid metal controller' does not) and different endpoint addresses - {[1 out, 1 in]; [8 out, 7 in]; [3 out, 3 in]} for the working controller and {[2 out, 1 in]; [4 out, 3 in]; [6 out, 5 in]} for the non-working liquid metal controller.

I'm not familiar with the ins and outs of USB device management, but it looks as though xpad categorizes the controllers based solely on the product/vendor ID and miscategorizes the liquid metal controller. Is that accurate?

dmesg_liq_met.txt
dmesg_pro_ex.txt
lsusb_liq_met.txt
lsusb_pro_ex.txt

changed the titleLiquid Metal Xbox One Controller No InputDec 27, 2016

referenced this issue Dec 27, 2016

Closed

PowerA Xbox One Wired Controller Unresponsive #58

commented Dec 27, 2016

this is the part where the endpoints are picked: https://github.com/paroj/xpad/blob/master/xpad.c#L1566-L1582

maybe @cgutman can provide more hints.

commented Dec 31, 2016

can you try again with current master? A second init packet was added which fixed some other third party pads.

commented Dec 31, 2016
edited

@paroj I think the endpoint selection code is definitely suboptimal but doesn't seem to have caused real problems yet (possibly by luck). The code depends on OUT endpoint being placed before the IN endpoint in the interface descriptor for all Xbox One controllers.

We know at least one controller that breaks this rule, that's the Titanfall 2 controller. Fortunately, because it uses endpoint addresses 0x81 and 0x01, the code works because the USB core masks off the 0x80 direction flag when processing the endpoint address anyway.

If a hypothetical controller had both:

  • endpoint addresses that were not equal when masked by 0xF - like the Liquid Metal controller
  • swapped order of IN and OUT endpoints - like the Titanfall 2 controller

Then it wouldn't work, but we don't know whether any such controller really exists. It's probably worth fixing anyway.

commented Dec 31, 2016

Thanks for looking at this! Using the current master gives the same results (i.e. the liquid metal pad is still unresponsive.)

referenced this issue Jan 1, 2017

Closed

xone: Hori Horipad - Non-repsonsive analog sticks #59

commented Jan 1, 2017

@nderr Can you try with this xpad.c? http://pastebin.com/raw/Re8xby26

commented Jan 1, 2017

@cgutman Tried it - still no luck.

commented Jan 1, 2017

@nderr thanks for testing. Is this the controller model that isn't working? https://www.amazon.com/Official-Licnesed-Wired-Liquid-Metal-Controller/dp/B0179K5L98

commented Jan 1, 2017

@cgutman It's this one: https://www.amazon.com/POWER-WIRED-CONTROLLER-XBOX-ONE-GREEN/dp/B01KTKHVC0

Although, as noted above, the product string in a call to dmesg identifies it as a liquid metal controller.

commented Jan 2, 2017

Same problem with the same controller.

commented Jan 2, 2017

@nderr@Trevdish30 If either of you have a Windows machine accessible, please try getting us a packet capture of the official driver - https://franticrain.github.io/sniffing/index.html

commented Jan 2, 2017

I have no idea if this is right but this is what I got.

commented Jan 2, 2017

@Trevdish30 Can you try uploading it as a pcap file? I think uploading it as a txt file may have messed up the capture because Wireshark won't open it.

commented Jan 2, 2017

I tried doing it as well.
xone_liquid_metal.zip

commented Jan 2, 2017

It tells me the pcap file is empty when i try uploading it.

commented Jan 11, 2017

Please test the 'powera' branch of my repo. https://github.com/cgutman/xpad/tree/powera

commented Jan 23, 2017
edited

Xbox One Pro Ex Controller Driver 8100

@nderr@Trevdish30 I'm preparing a patch upstream to fix the PowerA gamepads. Can you try my 'for_upstream' branch? https://github.com/cgutman/xpad

If that works, may I add a 'Tested-By: Firstname Lastname Email address' from you for my submission upstream?

commented Feb 11, 2017

Pro

@cgutman just tried your powera branch and it works for me now on jstest and steam!

commented Feb 18, 2017

Sorry for the delay - I had no access to the pad until today. I've tested the for_upstream branch with jstest-gtk and everything appears to work perfectly!

commented Feb 20, 2017

@cgutman I can also confirm that your branch works with the PowerA gamepad, thanks so much for your work!

commented Mar 4, 2017

I am still getting no input on jstest or steam with the patch. could someone tell me what exactly what to do or how they go it to work so I know if I am just not doing it right or if it just doesn't work.

commented Mar 4, 2017
edited

@Trevdish30 this is what I did, roughly, on two separate machines. I'm only 80% sure about this, it has been a few weeks. I based my instructions off of the README here: https://github.com/paroj/xpad/ and off my bash history :)

Edit: See #48 (comment) below for accurate instructions

commented Mar 5, 2017

@MDCore Thank you for your response but I am still not getting an input from the controller.

added a commit to Subhaam/android_kernel_lenovo_msm8953 that referenced this issue Jan 27, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to laststandrighthere/kernel_xiaomi_vimb that referenced this issue Jan 29, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to RebelLion420/kernel_perry that referenced this issue Feb 7, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to limoniumstatice/fini_kernel_marlin that referenced this issue Feb 9, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to limoniumstatice/fini_kernel_marlin that referenced this issue Feb 11, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to DidntRead/android_kernel_lenovo_k5fpr that referenced this issue Feb 13, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to Dil3mm4/labyrinth_kernel_prague that referenced this issue Feb 14, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

pushed a commit to TR-76/OP3-HDK that referenced this issue Feb 17, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

pushed a commit to efaiza/EAS_Markw that referenced this issue Feb 19, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to baddar90/android_kernel_zte_msm8996-1 that referenced this issue Mar 3, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 10, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 12, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 12, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 12, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 13, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 14, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 14, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 15, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 16, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 19, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to miraclestars/android_kernel_samsung_msm8996 that referenced this issue Mar 25, 2019

Xbox One Pro Controller Drivers

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to followmsi/android_kernel_samsung_exynos7870 that referenced this issue Mar 26, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to curtisy1/NX606J_O_kernel that referenced this issue Mar 31, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to C3LT1C/C3LT1C_Kernel_5-T that referenced this issue Mar 31, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to FraEgg/android_kernel_samsung_msm8996 that referenced this issue Apr 3, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to freemarkw/android_kernel_asus_sdm660 that referenced this issue Apr 9, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to YordiDR/android_kernel_samsung_universal7880 that referenced this issue Apr 21, 2019

Power A Pro Ex Controller Driver

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to Ante0/CarbonKernel that referenced this issue Apr 29, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to C3LT1C/C3LT1C_Kernel_5-T that referenced this issue May 12, 2019

Input: xpad - fix PowerA init quirk for some gamepad models

added a commit to mhdzumair/MhDzMR--woods that referenced this issue May 21, 2019

Input: xpad - fix PowerA init quirk for some gamepad models
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
24,291 downloads·Added on: June 6, 2014·Manufacturer: MICROSOFT
This package contains the files needed for installing the USB drivers that will enable the Microsoft Xbox One controller to be used with any game that featured gamepad support for the Xbox 360 controller. If it has been installed, updating (overwrite-installing) may fix problems, add new functions, or expand existing ones. Even though other OSes might be compatible as well, we do not recommend applying this release on platforms other than the ones specified

Xbox Pro Ex Controller

It is highly recommended to always use the most recent driver version available.
Try to set a system restore point before installing a device driver. This will help if you installed an incorrect or mismatched driver. Problems can arise when your hardware device is too old or not supported any longer.

Xbox One Pro Ex Controller Driver 81 Download

COMPATIBLE WITH:
Windows 7 64 bit
Windows 8 64 bit
Windows 8.1 64 bit
file size:
2.8 MB
CATEGORY:
Joystick, Gamepad & Wheels