Difference between revisions of "Xbox Input Devices"

From xboxdevwiki
Jump to: navigation, search
m
m (USB Adapters)
(43 intermediate revisions by 6 users not shown)
Line 6: Line 6:
 
Technicly a XID is a USB-hub for the Memory-Units and the XBL Communicator.
 
Technicly a XID is a USB-hub for the Memory-Units and the XBL Communicator.
 
The logical XID gamepad USB device is internally connected to that hub.
 
The logical XID gamepad USB device is internally connected to that hub.
 +
  
 
=== USB Adapters ===
 
=== USB Adapters ===
The Xbox input devices are USB devices. As such, you can connect a keyboard to the Xbox, or a gamepad to your PC. In fact, Linux already has drivers for the gamepad. In order to preserve Xbox hardware, please do not cut OEM Xbox cables to make an adapter. Decent adapters can be acquired cheaply (~$10 USD ea. on 2017.04.30).
+
The Xbox's Input devices are USB devices. As such, you can connect a keyboard to the Xbox, or a gamepad to your PC. In fact, Linux already has drivers for the gamepad. In order to preserve Xbox hardware, please do not cut OEM Xbox cables to make an adapter; decent adapters can be acquired cheaply (~$10 USD ea. on 2017.04.30).                            
  
{| class="wikitable"
+
[[File:Xboxmaletousbfemale.png|thumb|right|Wiring diagram to show how male Xbox controller plug maps to standard female USB connector. White cable color is depicted as gray for better visibility. The yellow cable is not connected to the USB side, as it's exclusive to Xbox.]]
|-
+
 
 +
{| class="wikitable"                                                        
 +
|-  
 
! Port (From)
 
! Port (From)
 
! Plug (To)
 
! Plug (To)
Line 17: Line 20:
 
|-
 
|-
 
| Xbox
 
| Xbox
| USB-A
+
| USB-A  
| [https://www.amazon.com/gp/product/B000RT2868 Amazon]
+
| [https://www.amazon.com/gp/product/B000RT2868 Amazon] [https://www.aliexpress.com/item/32948906701.html Aliexpress]
 
|-
 
|-
 
| USB-A
 
| USB-A
 
| Xbox
 
| Xbox
| [https://www.amazon.com/gp/product/B00F52LQHO Amazon]
+
| [https://www.amazon.com/gp/product/B00F52LQHO Amazon] [https://www.aliexpress.com/item/4000452932782.html Aliexpress]
 
|}
 
|}
  
Line 33: Line 36:
 
!Typical cable color
 
!Typical cable color
 
!Description
 
!Description
|-
+
|-                                                          
 
|1
 
|1
|Green
+
|Red
|USB D-
+
|VCC
 
|-
 
|-
 
|2
 
|2
Line 43: Line 46:
 
|-
 
|-
 
|3
 
|3
|Black
+
|Green
|GND
+
|USB D-
 
|-
 
|-
 
|4
 
|4
|Red
+
|Yellow
|VCC
+
|VBlank signal from video output (for Lightguns)
 
|-
 
|-
 
|5
 
|5
|Yellow
+
|Black
|VBlank signal from video output (for Lightguns)
+
|GND
 
|-
 
|-
 
|}
 
|}
Line 58: Line 61:
 
=== Protocol ===
 
=== Protocol ===
  
==== Controller to Xbox ====
+
XID are similar to HID but have custom Vendor requests
 +
 
 +
==== Control Transfers ====
 +
 
 +
===== GET_DESCRIPTOR =====
 +
 
 +
* bmRequestType: 0xC1
 +
* bRequest: 6
 +
* wValue: 0x4200
 +
* wIndex: Interface number
 +
* wLength: <length of respective report; typically 16>
 +
 
 +
Actual length is truncated to size of descriptor or wLength. Whichever is smaller.
 +
 
 +
<pre>
 +
typedef struct XIDDescriptor {
 +
    uint8_t bLength;
 +
    uint8_t bDescriptorType;
 +
    uint16_t bcdXid;
 +
    uint8_t bType;
 +
    uint8_t bSubType;
 +
    uint8_t bMaxInputReportSize;
 +
    uint8_t bMaxOutputReportSize;
 +
    uint16_t wAlternateProductIds[4];
 +
};
 +
</pre>
 +
 
 +
bDescriptorType is probably always 0x42.
 +
 
 +
====== bType = 1: Xbox Gamecontroller ======
 +
 
 +
* bSubType:
 +
** 0x01 = Gamepad (Duke)
 +
** 0x02 = Gamepad (Controller-S)
 +
** 0x10 = Steering wheel
 +
 
 +
===== GET_CAPABILITIES =====
 +
 
 +
* bmRequestType: 0xC1
 +
* bRequest: 1
 +
* wValue:
 +
** 0x0100 for input
 +
** 0x0200 for output
 +
* wIndex: Interface number
 +
* wLength: <length of respective report>
 +
 
 +
 
 +
* STALL if wValue not supported.
 +
 
 +
Actual length is truncated to size of report or wLength. Whichever is smaller.
 +
 
 +
<pre>typedef struct XIDGamepadCapabilities {
 +
    uint8_t bReportId;
 +
    uint8_t bLength;
 +
    <Data>
 +
}</pre>
 +
 
 +
The data will be similar to the GET_REPORT, but instead of storing actual values, it will have bits set (1) where the bit is valid in the respective report.
 +
If the bit is auto-generated, it will be cleared (0).
 +
 
 +
===== SET_REPORT =====
 +
 
 +
* bmRequestType: 0x21
 +
* bRequest: 9
 +
* wValue: 0x0200
 +
* wIndex: Interface number
 +
* wLength: <length of report; typically 6>
 +
 
 +
 
 +
* STALL if wValue not supported.
 +
 
 +
====== Typical report ======
  
 
<pre>typedef struct XIDGamepadReport {
 
<pre>typedef struct XIDGamepadReport {
Line 66: Line 140:
 
}</pre>
 
}</pre>
  
==== Xbox to Controller ====
+
===== GET_REPORT =====
 +
 
 +
* bmRequestType: 0xA1
 +
* bRequest: 1
 +
* wValue: 0x0100
 +
* wIndex: Interface number
 +
* wLength: <length of report; typically 20>
 +
 
 +
 
 +
* STALL if wValue not supported or if wLength is greater than report size.
 +
* ACK if supported.
 +
 
 +
====== Typical report ======
  
 
<pre>typedef struct XIDGamepadOutputReport {
 
<pre>typedef struct XIDGamepadOutputReport {
Line 73: Line 159:
 
     <Data>
 
     <Data>
 
}</pre>
 
}</pre>
 +
 +
==== Interrupt transfers ====
 +
 +
Alternatively interrupt-in and interrupt-out transfers can be used for GET_REPORT and SET_REPORT respectively.
 +
 +
In case of the interrupt-in, there is another status which can occur now:
 +
 +
* NAK if supported but no changes since last ACK.
  
 
== Standard Gamepads ==
 
== Standard Gamepads ==
 +
 +
=== Microsoft Hardware Variants ===
 +
 +
There are a few hardware re-designs of the Microsoft Gamepad.
 +
 +
{| class="wikitable"
 +
!Controller Name
 +
!Part Number
 +
!Board Model
 +
!Notes
 +
!Datasheets
 +
|-
 +
|Xbox Game Controller (AKA "Duke")
 +
|X08-17160
 +
|23-0819B
 +
|Earliest known model{{FIXME|Reason=Small sample size (5), can't confirm}}. 3 IC's: Dedicated ST 92163/JFL Micro Controller, dedicated AT43USB401 USB Controller, 4 Channel Analog Mux LW052A.
 +
|[https://archive.org/details/ST92163 ST 92163/JFL], AT43USB401{{FIXME|Reason=Can't find datasheet}}, [https://web.archive.org/web/20191230174412/https://www.rockbox.org/wiki/pub/Main/DataSheets/TexasInstrumentsLW052ADataSheet.pdf LW052A]
 +
|-
 +
|Xbox Game Controller (AKA "Duke")
 +
|X08-17160
 +
|K023B121
 +
|Same as 23-0819B, but manufactured in China. Only Board Model that does not follow naming conventions. Hardware identical. Easily identified by a serial number that starts with "KD".
 +
|[https://archive.org/details/ST92163 ST 92163/JFL], AT43USB401{{FIXME|Reason=Can't find datasheet}}, [https://web.archive.org/web/20191230174412/https://www.rockbox.org/wiki/pub/Main/DataSheets/TexasInstrumentsLW052ADataSheet.pdf LW052A]
 +
|-
 +
|Xbox Game Controller (AKA "Duke")
 +
|X08-17160
 +
|23-0819C
 +
|Last known Duke model.{{FIXME|Reason=Small sample size (5), can't confirm}}. Identical to 23-0819B in hardware, new silkscreen markings show this model is [https://en.wikipedia.org/wiki/UL_94 UL-94 V-0 compliant]. All boards after this are V-0 compliant.
 +
|[https://archive.org/details/ST92163 ST 92163/JFL], AT43USB401{{FIXME|Reason=Can't find datasheet}}, [https://web.archive.org/web/20191230174412/https://www.rockbox.org/wiki/pub/Main/DataSheets/TexasInstrumentsLW052ADataSheet.pdf LW052A]
 +
|-
 +
|Xbox Game Controller (Looks like an S, with green Xbox jewel)
 +
|X08-19383
 +
|23-0923A
 +
|Japan and Australia exclusive model{{FIXME|Reason=Speculation, no hard source for this}}.Minification of "Duke" PCB Design. Has exact same IC's as the Duke, only in an S controller design.
 +
|[https://archive.org/details/ST92163 ST 92163/JFL], AT43USB401{{FIXME|Reason=Can't find datasheet}}, [https://web.archive.org/web/20191230174412/https://www.rockbox.org/wiki/pub/Main/DataSheets/TexasInstrumentsLW052ADataSheet.pdf LW052A]
 +
|-
 +
|Xbox Controller S
 +
|X08-69873
 +
|23-0923B
 +
|Minification of "Duke" PCB Design. Has exact same IC's as the Duke, only in an S controller design
 +
|[https://archive.org/details/ST92163 ST 92163/JFL], AT43USB401{{FIXME|Reason=Can't find datasheet}}, [https://web.archive.org/web/20191230174412/https://www.rockbox.org/wiki/pub/Main/DataSheets/TexasInstrumentsLW052ADataSheet.pdf LW052A]
 +
|-
 +
|Xbox Controller S
 +
|X08-69873
 +
|23-0923H
 +
|Entirely new PCB design. Single IC on the board, AT43USB355M-AC
 +
|[https://archive.org/details/AT43USB355 AT43USB355M-AC]
 +
|-
 +
|Xbox Controller S
 +
|X08-69873
 +
|23-0923I
 +
|PCB Design almost exactly the same as H revision. Only difference is the IC is smaller: AT43USB353M-AC
 +
|[https://archive.org/details/AT43USB353M-AC AT43USB353M-AC]
 +
|}
 +
 +
There are also dedicated Part Numbers for color variants:
 +
{| class="wikitable"
 +
!Controller Part Number
 +
!Controller Description
 +
!Board Model
 +
|-
 +
|X02332-001
 +
|Crystal S Controller
 +
|23-0923I
 +
|-
 +
|X09-64240-01
 +
|Transparent Green Controller
 +
|23-0923I
 +
|-
 +
|X800679-100
 +
|Black S With Halo Jewel
 +
|23-0923I
 +
|}
  
 
=== USB Descriptors ===
 
=== USB Descriptors ===
  
Most standard gamepads share the same USB descriptor.
 
Usually the only difference will be the VID / PID.
 
 
See https://github.com/xboxdrv/xboxdrv/blob/stable/src/xpad_device.cpp for a list of devices.
 
See https://github.com/xboxdrv/xboxdrv/blob/stable/src/xpad_device.cpp for a list of devices.
 +
 +
==== 23-0819B ====
 +
 +
<pre>
 +
Device Descriptor:
 +
  bLength                18
 +
  bDescriptorType        1
 +
  bcdUSB              1.10
 +
  bDeviceClass            0
 +
  bDeviceSubClass        0
 +
  bDeviceProtocol        0
 +
  bMaxPacketSize0        64
 +
  idVendor          0x045e Microsoft Corp.
 +
  idProduct          0x0202 Xbox Controller
 +
  bcdDevice            1.00
 +
  iManufacturer          0
 +
  iProduct                0
 +
  iSerial                0
 +
  bNumConfigurations      1
 +
  Configuration Descriptor:
 +
    bLength                9
 +
    bDescriptorType        2
 +
    wTotalLength          32
 +
    bNumInterfaces          1
 +
    bConfigurationValue    1
 +
    iConfiguration          0
 +
    bmAttributes        0x80
 +
      (Bus Powered)
 +
    MaxPower              100mA
 +
    Interface Descriptor:
 +
      bLength                9
 +
      bDescriptorType        4
 +
      bInterfaceNumber        0
 +
      bAlternateSetting      0
 +
      bNumEndpoints          2
 +
      bInterfaceClass        88 Xbox
 +
      bInterfaceSubClass    66 Controller
 +
      bInterfaceProtocol      0
 +
      iInterface              0
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress    0x82  EP 2 IN
 +
        bmAttributes            3
 +
          Transfer Type            Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0020  1x 32 bytes
 +
        bInterval              4
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress    0x02  EP 2 OUT
 +
        bmAttributes            3
 +
          Transfer Type            Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0020  1x 32 bytes
 +
        bInterval              4
 +
</pre>
 +
 +
==== K023B121 ====
 +
 +
Identical to 23-0819B {{FIXME|Reason=Confirm with xid-dumper tool}}
 +
 +
==== 23-0819C ====
 +
 +
Identical to 23-0819B {{FIXME|Reason=Confirm with xid-dumper tool}}
 +
 +
==== 23-0923A ====
 +
 +
Changes from 23-0819B
 +
 +
<pre>
 +
Device Descriptor:
 +
  idProduct: 0x0285
 +
</pre>
 +
 +
==== 23-0923B ====
 +
 +
{{FIXME|Reason=No Descriptor Dump}}
 +
 +
==== 23-0923H ====
 +
 +
Changes from 23-0819B
 +
 +
<pre>
 +
Device Descriptor
 +
  bMaxPacketSize0: 8
 +
  idProduct: 0x0289
 +
  bcdDevice: 1.20
 +
  Configuration Descriptor
 +
    Interface Descriptor
 +
      Endpoint Descriptor
 +
        bEndpointAddress: 0x81
 +
</pre>
 +
 +
==== 23-0923I ====
 +
 +
Changes from 23-0923H
 +
 +
<pre>
 +
Device Descriptor
 +
  bcdDevice: 1.21
 +
</pre>
  
 
=== Controller to Xbox ===
 
=== Controller to Xbox ===
Line 92: Line 362:
 
!Notes
 
!Notes
 
|-
 
|-
|DPAD_UP
+
|{{input-dy+}}
 
|2
 
|2
 
|0x01
 
|0x01
 
|
 
|
 
|-
 
|-
|DPAD_DOWN
+
|{{input-dy-}}
 
|2
 
|2
 
|0x02
 
|0x02
 
|
 
|
 
|-
 
|-
|DPAD_LEFT
+
|{{input-dx-}}
 
|2
 
|2
 
|0x04
 
|0x04
 
|
 
|
 
|-
 
|-
|DPAD_RIGHT
+
|{{input-dx+}}
 
|2
 
|2
 
|0x08
 
|0x08
 
|
 
|
 
|-
 
|-
|START
+
|{{input-start}}
 
|2
 
|2
 
|0x10
 
|0x10
 
|
 
|
 
|-
 
|-
|BACK
+
|{{input-back}}
 
|2
 
|2
 
|0x20
 
|0x20
 
|
 
|
 
|-
 
|-
|LEFT_THUMB
+
|{{input-ls}}
 
|2
 
|2
 
|0x40
 
|0x40
 
|
 
|
 
|-
 
|-
|RIGHT_THUMB
+
|{{input-rs}}
 
|2
 
|2
 
|0x80
 
|0x80
 
|
 
|
 
|-
 
|-
|A
+
|{{input-a}}
 
|4
 
|4
 
|0xFF
 
|0xFF
 
|Button is analog
 
|Button is analog
 
|-
 
|-
|B
+
|{{input-b}}
 
|5
 
|5
 
|0xFF
 
|0xFF
 
|Button is analog
 
|Button is analog
 
|-
 
|-
|X
+
|{{input-x}}
 
|6
 
|6
 
|0xFF
 
|0xFF
 
|Button is analog
 
|Button is analog
 
|-
 
|-
|Y
+
|{{input-y}}
 
|7
 
|7
 
|0xFF
 
|0xFF
 
|Button is analog
 
|Button is analog
 
|-
 
|-
|BLACK
+
|{{input-black}}
 
|8
 
|8
 
|0xFF
 
|0xFF
 
|Button is analog
 
|Button is analog
 
|-
 
|-
|WHITE
+
|{{input-white}}
 
|9
 
|9
 
|0xFF
 
|0xFF
 
|Button is analog
 
|Button is analog
 
|-
 
|-
|LEFT_TRIGGER
+
|{{input-lt}}
 
|10
 
|10
 
|0xFF
 
|0xFF
 
|Trigger is analog
 
|Trigger is analog
 
|-
 
|-
|RIGHT_TRIGGER
+
|{{input-rt}}
 
|11
 
|11
 
|0xFF
 
|0xFF
 
|Trigger is analog
 
|Trigger is analog
 
|-
 
|-
|sThumbLX
+
|{{input-lx}}
 
|12
 
|12
 
|0xFFFF
 
|0xFFFF
|
+
|Negative = Left; Positive = Right
 
|-
 
|-
|sThumbLY
+
|{{input-ly}}
 
|14
 
|14
 
|0xFFFF
 
|0xFFFF
|
+
|Negative = Down; Positive = Up
 
|-
 
|-
|sThumbRX
+
|{{input-rx}}
 
|16
 
|16
 
|0xFFFF
 
|0xFFFF
|
+
|Negative = Left; Positive = Right
 
|-
 
|-
|sThumbRY
+
|{{input-ry}}
 
|18
 
|18
 
|0xFFFF
 
|0xFFFF
|
+
|Negative = Down; Positive = Up
 
|}
 
|}
  
Line 213: Line 483:
 
|
 
|
 
|}
 
|}
 +
 +
Xbox games use the full range from 0x0000 to 0xFFFF for both the left and right actuators.
  
 
The Microsoft Controller S will not react to packets which don't have a value of 6 in the <code>length</code> field of the header.
 
The Microsoft Controller S will not react to packets which don't have a value of 6 in the <code>length</code> field of the header.
Line 406: Line 678:
 
! EMS TopGun II !! Xbox Gamepad !! Notes
 
! EMS TopGun II !! Xbox Gamepad !! Notes
 
|-
 
|-
| Stick || Directional Pad ||
+
| Stick || {{input-d}} ||
 
|-
 
|-
| Trigger || A || rowspan="4" | Digital only, either 0 or 255
+
| Trigger || {{input-a}} || rowspan="4" | Digital only, either 0 or 255
 
|-
 
|-
| Grip || B
+
| Grip || {{input-b}}
 
|-
 
|-
| A || X
+
| A || {{input-x}}
 
|-
 
|-
| B || Y
+
| B || {{input-y}}
 
|-
 
|-
| START || Start ||
+
| START || {{input-start}} ||
 
|-
 
|-
| SE/BA || Back ||
+
| SE/BA || {{input-back}} ||
 
|-
 
|-
| Aim Left / Right || Negative / Positive on left thumbstick X axis || rowspan="2" | Absolute position using the full stick range
+
| Aim Left / Right || {{input-lx}} || rowspan="2" | Absolute position using the full stick range
 
|-
 
|-
| Aim Up / Down || Positive / Negative on left thumbstick Y axis
+
| Aim Up / Down || {{input-ly}}
 
|}
 
|}
  
Line 429: Line 701:
 
===== Turbo Mode =====
 
===== Turbo Mode =====
  
* Turbo mode 0 keeps A pressed  while trigger is held
+
* Turbo mode 0 keeps {{input-a}} pressed  while trigger is held
* Turbo mode 1 toggles A rapidly while trigger is held
+
* Turbo mode 1 toggles {{input-a}} rapidly while trigger is held
* Turbo mode 2 toggles A rapidly and once in a while B while trigger is held
+
* Turbo mode 2 toggles {{input-a}} rapidly and once in a while {{input-b}} while trigger is held
  
 
===== Force Feedback =====
 
===== Force Feedback =====
Line 504: Line 776:
 
</pre>
 
</pre>
  
== Steel Battalion Controller ==
+
=== Joytech Sharp Shooter ===
 +
 
 +
''This is an unlicensed / unofficial Xbox accessory.''
 +
 
 +
The third party light gun from Joytech reports itself as 2 devices and mentions pattent [http://www.google.com/patents/US6287198 US6287198]
 +
it came with a detachable viewfinder scope without any magnification. a red dot apears in the viewfinder, its a reflection of a red led, powered by the gun over usb.
 +
 
 +
model numer: JS-901D
 +
 
 +
{| class="wikitable"
 +
! Joytech Sharp Shooter !! Xbox Gamepad !! Notes
 +
|-
 +
| Stick || {{input-d}} ||
 +
|-
 +
| Trigger || {{input-a}} || rowspan="6" | Digital only, either 0 or 255 {{citation needed}}
 +
|-
 +
| B (Left side) || rowspan="3" | {{input-b}}
 +
|-
 +
| B (Right side)
 +
|-
 +
| B (Magazine button)
 +
|-
 +
| x || {{input-x}}
 +
|-
 +
| y || {{input-y}}
 +
|-
 +
| START || {{input-start}} ||
 +
|-
 +
| BACK || {{input-back}} ||
 +
|-
 +
| Aim Left / Right || {{input-lx}} || {{citation needed}}
 +
|-
 +
| Aim Up / Down || {{input-ly}} || {{citation needed}}
 +
|}
 +
 
 +
There is no right thumbstick, thumbstick presses, black/white button or trigger buttons {{citation needed}}
  
=== USB Descriptors ===
+
===== Fire/Reload Mode =====
  
From http://www.yaronet.com/topics/154490-steel-battalion-controller-homemade#post-15
+
* Normal mode does nothing, normal operation
 +
* Auto reload mode toggles {{input-b}} rapidly to rappidly reload {{citation needed}}
 +
* Auto fire+reload mode toggles {{input-a}} + {{input-b}} rapidly  {{citation needed}}
  
<pre>bcdUSB:            0x0110
+
==== USB Descriptors ====
bDeviceClass:        0x00
 
bDeviceSubClass:      0x00
 
bDeviceProtocol:      0x00
 
bMaxPacketSize0:      0x08 (8)
 
idVendor:          0x0A7B
 
idProduct:          0xD000
 
bcdDevice:          0x0100
 
iManufacturer:        0x00
 
iProduct:            0x00
 
iSerialNumber:        0x00
 
bNumConfigurations:  0x01
 
  
ConnectionStatus: DeviceConnected
+
<pre>
Current Config Value: 0x00
 
Device Bus Speed:    Full
 
Device Address:      0x03
 
Open Pipes:              0
 
  
Configuration Descriptor:
+
Bus 003 Device 025: ID 1292:3006 Innomedia
wTotalLength:      0x0020
+
Device Descriptor:
bNumInterfaces:      0x01
+
  bLength                18
bConfigurationValue:  0x01
+
  bDescriptorType        1
iConfiguration:      0x00
+
  bcdUSB              1.10
bmAttributes:         0x80 (Bus Powered )
+
  bDeviceClass            0
MaxPower:             0xFA (500 Ma)
+
  bDeviceSubClass        0
 +
  bDeviceProtocol        0
 +
  bMaxPacketSize0        8
 +
  idVendor          0x1292 Innomedia
 +
  idProduct          0x3006
 +
  bcdDevice            1.50
 +
  iManufacturer          0
 +
  iProduct                0
 +
  iSerial                0
 +
  bNumConfigurations      1
 +
  Configuration Descriptor:
 +
    bLength                9
 +
    bDescriptorType        2
 +
    wTotalLength           32
 +
    bNumInterfaces         1
 +
    bConfigurationValue     1
 +
    iConfiguration         1 (error)
 +
    bmAttributes        0x80
 +
      (Bus Powered)
 +
    MaxPower             100mA
 +
    Interface Descriptor:
 +
      bLength                9
 +
      bDescriptorType        4
 +
      bInterfaceNumber        0
 +
      bAlternateSetting      0
 +
      bNumEndpoints          2
 +
      bInterfaceClass        88 Xbox
 +
      bInterfaceSubClass    66 Controller
 +
      bInterfaceProtocol      0
 +
      iInterface              2 (error)
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress    0x81  EP 1 IN
 +
        bmAttributes            3
 +
          Transfer Type            Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0020  1x 32 bytes
 +
        bInterval              4
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress    0x02  EP 2 OUT
 +
        bmAttributes            3
 +
          Transfer Type            Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0020  1x 32 bytes
 +
        bInterval              4
  
Interface Descriptor:
+
Bus 003 Device 024: ID 1292:3006 Innomedia
bInterfaceNumber:    0x00
+
Device Descriptor:
bAlternateSetting:    0x00
+
  bLength                18
bNumEndpoints:       0x02
+
  bDescriptorType        1
bInterfaceClass:     0x58
+
  bcdUSB              1.10
bInterfaceSubClass:   0x42
+
  bDeviceClass            9 Hub
bInterfaceProtocol0x00
+
  bDeviceSubClass        0
iInterface:           0x00
+
  bDeviceProtocol        0 Full speed (or root) hub
 +
  bMaxPacketSize0        8
 +
  idVendor          0x1292 Innomedia
 +
  idProduct          0x3006
 +
  bcdDevice            1.50
 +
  iManufacturer          1 (c) 2004 R0R3 Inc.
 +
  iProduct                2 US Patent 6,287,198
 +
  iSerial                0
 +
  bNumConfigurations      1
 +
  Configuration Descriptor:
 +
    bLength                9
 +
    bDescriptorType        2
 +
    wTotalLength          25
 +
    bNumInterfaces          1
 +
    bConfigurationValue    1
 +
    iConfiguration          4 (c) R0R3 Devices Inc. US Patent 6,287,19Ē
 +
    bmAttributes        0xa0
 +
      (Bus Powered)
 +
      Remote Wakeup
 +
    MaxPower              64mA
 +
    Interface Descriptor:
 +
      bLength                9
 +
      bDescriptorType        4
 +
      bInterfaceNumber       0
 +
      bAlternateSetting      0
 +
      bNumEndpoints          1
 +
      bInterfaceClass        9 Hub
 +
      bInterfaceSubClass      0
 +
      bInterfaceProtocol      0 Full speed (or root) hub
 +
      iInterface              5 (error)
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress     0x81  EP 1 IN
 +
        bmAttributes            3
 +
          Transfer Type            Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0001  1x 1 bytes
 +
        bInterval            255
 +
Hub Descriptor:
 +
  bLength              9
 +
  bDescriptorType      41
 +
  nNbrPorts            3
 +
  wHubCharacteristic 0x000d
 +
    Per-port power switching
 +
    Compound device
 +
    Per-port overcurrent protection
 +
  bPwrOn2PwrGood      32 * 2 milli seconds
 +
  bHubContrCurrent    64 milli Ampere
 +
  DeviceRemovable   0x02
 +
  PortPwrCtrlMask    0x0e
 +
Hub Port Status:
 +
  Port 1: 0000.0103 power enable connect
 +
  Port 2: 0000.0100 power
 +
  Port 3: 0100.0100 power
 +
Device Status:     0x0000
 +
   (Bus Powered)
 +
</pre>
 +
 
 +
== Steel Battalion Controller ==
 +
 
 +
[[File:SBC.jpg|thumb|200px|Steel Battalion Controller Layout]]
 +
 
 +
=== USB Descriptors ===
  
Endpoint Descriptor:
+
<pre>
bEndpointAddress:     0x82
+
Device Descriptor:
Transfer Type:   Interrupt</pre>
+
  bLength                18
 +
  bDescriptorType        1
 +
  bcdUSB              1.10
 +
  bDeviceClass            0 (Defined at Interface level)
 +
  bDeviceSubClass        0
 +
  bDeviceProtocol        0
 +
  bMaxPacketSize0        8
 +
  idVendor          0x0a7b
 +
  idProduct          0xd000
 +
  bcdDevice            1.00
 +
  iManufacturer          0
 +
  iProduct                0
 +
  iSerial                0
 +
  bNumConfigurations      1
 +
  Configuration Descriptor:
 +
    bLength                9
 +
    bDescriptorType        2
 +
    wTotalLength          32
 +
    bNumInterfaces          1
 +
    bConfigurationValue    1
 +
    iConfiguration          0
 +
    bmAttributes        0x80
 +
      (Bus Powered)
 +
    MaxPower              500mA
 +
    Interface Descriptor:
 +
      bLength                9
 +
      bDescriptorType        4
 +
      bInterfaceNumber        0
 +
      bAlternateSetting      0
 +
      bNumEndpoints          2
 +
      bInterfaceClass        88 Xbox
 +
      bInterfaceSubClass    66 Controller
 +
      bInterfaceProtocol      0
 +
      iInterface              0
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress    0x82 EP 2 IN
 +
        bmAttributes            3
 +
          Transfer Type           Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0020  1x 32 bytes
 +
        bInterval              4
 +
      Endpoint Descriptor:
 +
        bLength                7
 +
        bDescriptorType        5
 +
        bEndpointAddress    0x01  EP 1 OUT
 +
        bmAttributes            3
 +
          Transfer Type            Interrupt
 +
          Synch Type              None
 +
          Usage Type              Data
 +
        wMaxPacketSize    0x0020  1x 32 bytes
 +
        bInterval              4
 +
</pre>
  
 
=== Controller to Xbox ===
 
=== Controller to Xbox ===
Line 569: Line 1,030:
 
|RightJoyFire
 
|RightJoyFire
 
|2
 
|2
|0x03
+
|0x02
|FIXME: WTF?! Mask might be bad?
+
|
 
|-
 
|-
 
|RightJoyLockOn
 
|RightJoyLockOn
Line 1,033: Line 1,494:
 
== Related links ==
 
== Related links ==
 
[https://github.com/xqemu/xqemu/blob/xbox/hw/xbox/xid.c XID emulation in XQEMU]
 
[https://github.com/xqemu/xqemu/blob/xbox/hw/xbox/xid.c XID emulation in XQEMU]
 +
 +
[https://docs.google.com/spreadsheets/d/1-c1tXfOMvaWuno3ixQyI_rPCQVAZA24N4v9OPZUSrCk/edit?usp=sharing Compilation of Xbox Controller Hardware Research]

Revision as of 18:55, 29 April 2020

XID Overview

XIDs are USB devices.

The hardware side is USB with a different plug while the software side is USB without HID-descriptors. Technicly a XID is a USB-hub for the Memory-Units and the XBL Communicator. The logical XID gamepad USB device is internally connected to that hub.


USB Adapters

The Xbox's Input devices are USB devices. As such, you can connect a keyboard to the Xbox, or a gamepad to your PC. In fact, Linux already has drivers for the gamepad. In order to preserve Xbox hardware, please do not cut OEM Xbox cables to make an adapter; decent adapters can be acquired cheaply (~$10 USD ea. on 2017.04.30).

Wiring diagram to show how male Xbox controller plug maps to standard female USB connector. White cable color is depicted as gray for better visibility. The yellow cable is not connected to the USB side, as it's exclusive to Xbox.
Port (From) Plug (To) Link
Xbox USB-A Amazon Aliexpress
USB-A Xbox Amazon Aliexpress

Wiring

Untested / unverified! Take this with a grain of salt.

Pin Typical cable color Description
1 Red VCC
2 White USB D+
3 Green USB D-
4 Yellow VBlank signal from video output (for Lightguns)
5 Black GND

Protocol

XID are similar to HID but have custom Vendor requests

Control Transfers

GET_DESCRIPTOR
  • bmRequestType: 0xC1
  • bRequest: 6
  • wValue: 0x4200
  • wIndex: Interface number
  • wLength: <length of respective report; typically 16>

Actual length is truncated to size of descriptor or wLength. Whichever is smaller.

typedef struct XIDDescriptor {
    uint8_t bLength;
    uint8_t bDescriptorType;
    uint16_t bcdXid;
    uint8_t bType;
    uint8_t bSubType;
    uint8_t bMaxInputReportSize;
    uint8_t bMaxOutputReportSize;
    uint16_t wAlternateProductIds[4];
};

bDescriptorType is probably always 0x42.

bType = 1: Xbox Gamecontroller
  • bSubType:
    • 0x01 = Gamepad (Duke)
    • 0x02 = Gamepad (Controller-S)
    • 0x10 = Steering wheel
GET_CAPABILITIES
  • bmRequestType: 0xC1
  • bRequest: 1
  • wValue:
    • 0x0100 for input
    • 0x0200 for output
  • wIndex: Interface number
  • wLength: <length of respective report>


  • STALL if wValue not supported.

Actual length is truncated to size of report or wLength. Whichever is smaller.

typedef struct XIDGamepadCapabilities {
    uint8_t bReportId;
    uint8_t bLength;
    <Data>
}

The data will be similar to the GET_REPORT, but instead of storing actual values, it will have bits set (1) where the bit is valid in the respective report. If the bit is auto-generated, it will be cleared (0).

SET_REPORT
  • bmRequestType: 0x21
  • bRequest: 9
  • wValue: 0x0200
  • wIndex: Interface number
  • wLength: <length of report; typically 6>


  • STALL if wValue not supported.
Typical report
typedef struct XIDGamepadReport {
    uint8_t bReportId;
    uint8_t bLength;
    <Data>
}
GET_REPORT
  • bmRequestType: 0xA1
  • bRequest: 1
  • wValue: 0x0100
  • wIndex: Interface number
  • wLength: <length of report; typically 20>


  • STALL if wValue not supported or if wLength is greater than report size.
  • ACK if supported.
Typical report
typedef struct XIDGamepadOutputReport {
    uint8_t report_id; //FIXME: is this correct?
    uint8_t length;
    <Data>
}

Interrupt transfers

Alternatively interrupt-in and interrupt-out transfers can be used for GET_REPORT and SET_REPORT respectively.

In case of the interrupt-in, there is another status which can occur now:

  • NAK if supported but no changes since last ACK.

Standard Gamepads

Microsoft Hardware Variants

There are a few hardware re-designs of the Microsoft Gamepad.

Controller Name Part Number Board Model Notes Datasheets
Xbox Game Controller (AKA "Duke") X08-17160 23-0819B Earliest known model[FIXME]. 3 IC's: Dedicated ST 92163/JFL Micro Controller, dedicated AT43USB401 USB Controller, 4 Channel Analog Mux LW052A. ST 92163/JFL, AT43USB401[FIXME], LW052A
Xbox Game Controller (AKA "Duke") X08-17160 K023B121 Same as 23-0819B, but manufactured in China. Only Board Model that does not follow naming conventions. Hardware identical. Easily identified by a serial number that starts with "KD". ST 92163/JFL, AT43USB401[FIXME], LW052A
Xbox Game Controller (AKA "Duke") X08-17160 23-0819C Last known Duke model.[FIXME]. Identical to 23-0819B in hardware, new silkscreen markings show this model is UL-94 V-0 compliant. All boards after this are V-0 compliant. ST 92163/JFL, AT43USB401[FIXME], LW052A
Xbox Game Controller (Looks like an S, with green Xbox jewel) X08-19383 23-0923A Japan and Australia exclusive model[FIXME].Minification of "Duke" PCB Design. Has exact same IC's as the Duke, only in an S controller design. ST 92163/JFL, AT43USB401[FIXME], LW052A
Xbox Controller S X08-69873 23-0923B Minification of "Duke" PCB Design. Has exact same IC's as the Duke, only in an S controller design ST 92163/JFL, AT43USB401[FIXME], LW052A
Xbox Controller S X08-69873 23-0923H Entirely new PCB design. Single IC on the board, AT43USB355M-AC AT43USB355M-AC
Xbox Controller S X08-69873 23-0923I PCB Design almost exactly the same as H revision. Only difference is the IC is smaller: AT43USB353M-AC AT43USB353M-AC

There are also dedicated Part Numbers for color variants:

Controller Part Number Controller Description Board Model
X02332-001 Crystal S Controller 23-0923I
X09-64240-01 Transparent Green Controller 23-0923I
X800679-100 Black S With Halo Jewel 23-0923I

USB Descriptors

See https://github.com/xboxdrv/xboxdrv/blob/stable/src/xpad_device.cpp for a list of devices.

23-0819B

Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x045e Microsoft Corp.
  idProduct          0x0202 Xbox Controller
  bcdDevice            1.00
  iManufacturer           0 
  iProduct                0 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           32
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        88 Xbox
      bInterfaceSubClass     66 Controller
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4

K023B121

Identical to 23-0819B [FIXME]

23-0819C

Identical to 23-0819B [FIXME]

23-0923A

Changes from 23-0819B

Device Descriptor:
  idProduct: 0x0285

23-0923B

[FIXME]

23-0923H

Changes from 23-0819B

Device Descriptor
  bMaxPacketSize0: 8
  idProduct: 0x0289
  bcdDevice: 1.20
  Configuration Descriptor
    Interface Descriptor
      Endpoint Descriptor
        bEndpointAddress: 0x81

23-0923I

Changes from 23-0923H

Device Descriptor
  bcdDevice: 1.21

Controller to Xbox

20 bytes

Field Offset (Bytes) Mask Notes
Alt=Digital-Pad-Up 2 0x01
Alt=Digital-Pad-Down 2 0x02
Alt=Digital-Pad-Left 2 0x04
Alt=Digital-Pad-Right 2 0x08
Alt=START button 2 0x10
Alt=BACK button 2 0x20
Alt=Left-Thumbstick-Press 2 0x40
Alt=Right-Thumbstick-Press 2 0x80
Alt=A button 4 0xFF Button is analog
Alt=B button 5 0xFF Button is analog
Alt=X button 6 0xFF Button is analog
Alt=Y button 7 0xFF Button is analog
Alt=Black button 8 0xFF Button is analog
Alt=White button 9 0xFF Button is analog
Left-Trigger 10 0xFF Trigger is analog
Right-Trigger 11 0xFF Trigger is analog
Alt=Left-Thumbstick-Horizontal 12 0xFFFF Negative = Left; Positive = Right
Alt=Left-Thumbstick-Vertical 14 0xFFFF Negative = Down; Positive = Up
Alt=Right-Thumbstick-Horizontal 16 0xFFFF Negative = Left; Positive = Right
Alt=Right-Thumbstick-Vertical 18 0xFFFF Negative = Down; Positive = Up

Xbox to Controller

6 bytes

Field Offset (Bytes) Mask Notes
Left actuator strength 2 0xFFFF
Right actuator strength 4 0xFFFF

Xbox games use the full range from 0x0000 to 0xFFFF for both the left and right actuators.

The Microsoft Controller S will not react to packets which don't have a value of 6 in the length field of the header. The Fanatec Speedster 3 ForceShock will still react to those. Further testing is necessary with other gamepads.

Steering wheels

MadCatz Wheel

[FIXME]

Fanatec Speedster 3 ForceShock

Pedals

The Pedals are not a USB device.

Note that the cable going to the pedals is also not a USB port despite using the Xbox controller breakaway plug. Likewise, plugging the pedals to a PC / Xbox won't provide a USB / XID (it is detected as garbage):

new full-speed USB device number 14 using xhci_hcd
device descriptor read/64, error -71
device descriptor read/64, error -71
new full-speed USB device number 15 using xhci_hcd
device descriptor read/64, error -71
device descriptor read/64, error -71
new full-speed USB device number 16 using xhci_hcd
Device not responding to setup address.
Device not responding to setup address.
device not accepting address 16, error -71
new full-speed USB device number 17 using xhci_hcd
Device not responding to setup address.
Device not responding to setup address.
device not accepting address 17, error -71
unable to enumerate USB device

Internal HUB

USB Descriptors

Power not connected, pedals not connected, not in Tuning mode:

Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0         8
  idVendor           0x3767 
  idProduct          0x0102 
  bcdDevice            0.01
  iManufacturer           0 
  iProduct                1 End
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower               64mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval             255
Hub Descriptor:
  bLength               9
  bDescriptorType      41
  nNbrPorts             3
  wHubCharacteristic 0x000d
    Per-port power switching
    Compound device
    Per-port overcurrent protection
  bPwrOn2PwrGood       50 * 2 milli seconds
  bHubContrCurrent     64 milli Ampere
  DeviceRemovable    0x02
  PortPwrCtrlMask    0xff
 Hub Port Status:
   Port 1: 0000.0103 power enable connect
   Port 2: 0000.0100 power
   Port 3: 0000.0100 power
can't get debug descriptor: Resource temporarily unavailable
Device Status:     0x0003
  Self Powered
  Remote Wakeup Enabled

Steering wheel (and Pedals)

Always connected to port 1 of the internal HUB

USB Descriptors
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x3767 
  idProduct          0x0101 
  bcdDevice            2.80
  iManufacturer           0 
  iProduct                0 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           32
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        88 Xbox
      bInterfaceSubClass     66 Controller
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4
can't get debug descriptor: Resource temporarily unavailable
Device Status:     0x0000
  (Bus Powered)

Light guns

EMS TopGun II

This is an unlicensed / unofficial Xbox accessory.

The website for this product can be found at http://www.hkems.com/product/xbox/EMSTopGun2.htm

The gun presents itself as a standard Xbox gamepad. It uses a different USB descriptor for Xbox (X) and the other mode (P). There is no internal hub in this device.

EMS TopGun II Xbox Gamepad Notes
Stick Alt=Digital-Pad
Trigger Alt=A button Digital only, either 0 or 255
Grip Alt=B button
A Alt=X button
B Alt=Y button
START Alt=START button
SE/BA Alt=BACK button
Aim Left / Right Alt=Left-Thumbstick-Horizontal Absolute position using the full stick range
Aim Up / Down Alt=Left-Thumbstick-Vertical

There is no right thumbstick, thumbstick presses, black/white button or trigger buttons (All of those read constant zeros).

Turbo Mode
  • Turbo mode 0 keeps Alt=A button pressed while trigger is held
  • Turbo mode 1 toggles Alt=A button rapidly while trigger is held
  • Turbo mode 2 toggles Alt=A button rapidly and once in a while Alt=B button while trigger is held
Force Feedback

The upper part of the gun is moveable and should push back to simulate recoil (possibly hurting your thumb while you are using the stick). I could not get the force feedback working, but I'm sure I've had it working in the past on PC.[citation needed]

USB Descriptors

This is the descriptor in the Xbox mode (X).

Bus 003 Device 016: ID 0b9a:016b  
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x0b9a 
  idProduct          0x016b 
  bcdDevice            4.57
  iManufacturer           1 EMS̖E
  iProduct                2 EMS TopGun
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           32
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        88 Xbox
      bInterfaceSubClass     66 Controller
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               4
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               8
can't get debug descriptor: Resource temporarily unavailable
Device Status:     0x0000
  (Bus Powered)

Joytech Sharp Shooter

This is an unlicensed / unofficial Xbox accessory.

The third party light gun from Joytech reports itself as 2 devices and mentions pattent US6287198 it came with a detachable viewfinder scope without any magnification. a red dot apears in the viewfinder, its a reflection of a red led, powered by the gun over usb.

model numer: JS-901D

Joytech Sharp Shooter Xbox Gamepad Notes
Stick Alt=Digital-Pad
Trigger Alt=A button Digital only, either 0 or 255 [citation needed]
B (Left side) Alt=B button
B (Right side)
B (Magazine button)
x Alt=X button
y Alt=Y button
START Alt=START button
BACK Alt=BACK button
Aim Left / Right Alt=Left-Thumbstick-Horizontal [citation needed]
Aim Up / Down Alt=Left-Thumbstick-Vertical [citation needed]

There is no right thumbstick, thumbstick presses, black/white button or trigger buttons [citation needed]

Fire/Reload Mode
  • Normal mode does nothing, normal operation
  • Auto reload mode toggles Alt=B button rapidly to rappidly reload [citation needed]
  • Auto fire+reload mode toggles Alt=A button + Alt=B button rapidly [citation needed]

USB Descriptors


Bus 003 Device 025: ID 1292:3006 Innomedia 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x1292 Innomedia
  idProduct          0x3006 
  bcdDevice            1.50
  iManufacturer           0 
  iProduct                0 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           32
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          1 (error)
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        88 Xbox
      bInterfaceSubClass     66 Controller
      bInterfaceProtocol      0 
      iInterface              2 (error)
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4

Bus 003 Device 024: ID 1292:3006 Innomedia 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0 
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0         8
  idVendor           0x1292 Innomedia
  idProduct          0x3006 
  bcdDevice            1.50
  iManufacturer           1 (c) 2004 R0R3 Inc.
  iProduct                2 US Patent 6,287,198
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          4 (c) R0R3 Devices Inc. US Patent 6,287,19Ē
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower               64mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              5 (error)
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval             255
Hub Descriptor:
  bLength               9
  bDescriptorType      41
  nNbrPorts             3
  wHubCharacteristic 0x000d
    Per-port power switching
    Compound device
    Per-port overcurrent protection
  bPwrOn2PwrGood       32 * 2 milli seconds
  bHubContrCurrent     64 milli Ampere
  DeviceRemovable    0x02
  PortPwrCtrlMask    0x0e
 Hub Port Status:
   Port 1: 0000.0103 power enable connect
   Port 2: 0000.0100 power
   Port 3: 0100.0100 power
Device Status:     0x0000
  (Bus Powered)

Steel Battalion Controller

Steel Battalion Controller Layout

USB Descriptors

Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x0a7b
  idProduct          0xd000
  bcdDevice            1.00
  iManufacturer           0
  iProduct                0
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           32
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              500mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        88 Xbox
      bInterfaceSubClass     66 Controller
      bInterfaceProtocol      0
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0020  1x 32 bytes
        bInterval               4

Controller to Xbox

From http://steelbattalionnet.codeplex.com/SourceControl/latest#SBC/SteelBattalionController.cs

26 bytes

Field Offset (Bytes) Mask Notes
RightJoyMainWeapon 2 0x01
RightJoyFire 2 0x02
RightJoyLockOn 2 0x04
Eject 2 0x08
CockpitHatch 2 0x10
Ignition 2 0x20
Start 2 0x40
MultiMonOpenClose 2 0x80
MultiMonMapZoomInOut 3 0x01
MultiMonModeSelect 3 0x02
MultiMonSubMonitor 3 0x04
MainMonZoomIn 3 0x08
MainMonZoomOut 3 0x10
FunctionFSS 3 0x20
FunctionManipulator 3 0x40
FunctionLineColorChange 3 0x80
Washing 4 0x01
Extinguisher 4 0x02
Chaff 4 0x04
FunctionTankDetach 4 0x08
FunctionOverride 4 0x10
FunctionNightScope 4 0x20
FunctionF1 4 0x40
FunctionF2 4 0x80
FunctionF3 5 0x01
WeaponConMain 5 0x02
WeaponConSub 5 0x04
WeaponConMagazine 5 0x08
Comm1 5 0x10
Comm2 5 0x20
Comm3 5 0x40
Comm4 5 0x80
Comm5 6 0x01
LeftJoySightChange 6 0x02
ToggleFilterControl 6 0x04
ToggleOxygenSupply 6 0x08
ToggleFuelFlowRate 6 0x10
ToggleBuffreMaterial 6 0x20
ToggleVTLocation 6 0x40
6 0x80
7 0xFF
8 0xFF
AimingX 9 0xFF, maybe 0xFFFF at offset 8? "Aiming Lever" joystick on the right. X Axis value.
AimingY 11 0xFF, maybe 0xFFFF at offset 10? "Aiming Lever" joystick on the right. Y Axis value.
RotationLever 13 0xFF, maybe 0xFFFF at offset 12? "Rotation Lever" joystick on the left.
SightChangeX 15 0xFF, maybe 0xFFFF at offset 14? "Sight Change" analog stick on the "Rotation Lever" joystick. X Axis value.
SightChangeY 17 0xFF, maybe 0xFFFF at offset 16? "Sight Change" analog stick on the "Rotation Lever" joystick. Y Axis value.
LeftPedal 19 0xFF, maybe 0xFFFF at offset 18?
MiddlePedal 21 0xFF, maybe 0xFFFF at offset 20?
RightPedal 23 0xFF, maybe 0xFFFF at offset 22?
TunerDial 24 0x0F The 9 o'clock postion is 0, and the 6 o'clock position is 12. The blank area between the 6 and 9 o'clock positions is 13, 14, and 15 clockwise.
24 0xF0
GearLever 25 0xFF The gear lever on the left block.

Xbox to Controller

From http://steelbattalionnet.codeplex.com/SourceControl/latest#SBC/SteelBattalionController.cs

34 bytes

Field Offset (Bytes) Mask Notes
EmergencyEject 2 0x0F
CockpitHatch 2 0xF0
Ignition 3 0x0F
Start 3 0xF0
OpenClose 4 0x0F
MapZoomInOut 4 0xF0
ModeSelect 5 0x0F
SubMonitorModeSelect 5 0xF0
MainMonitorZoomIn 6 0x0F
MainMonitorZoomOut 6 0xF0
ForecastShootingSystem 7 0x0F
Manipulator 7 0xF0
LineColorChange 8 0x0F
Washing 8 0xF0
Extinguisher 9 0x0F
Chaff 9 0xF0
TankDetach 10 0x0F
Override 10 0xF0
NightScope 11 0x0F
F1 11 0xF0
F2 12 0x0F
F3 12 0xF0
MainWeaponControl 13 0x0F
SubWeaponControl 13 0xF0
MagazineChange 14 0x0F
Comm1 14 0xF0
Comm2 15 0x0F
Comm3 15 0xF0
Comm4 16 0x0F
Comm5 16 0xF0
17 0x0F
GearR 17 0xF0
GearN 18 0x0F
Gear1 18 0xF0
Gear2 19 0x0F
Gear3 19 0xF0
Gear4 20 0x0F
Gear5 20 0xF0

Related links

XID emulation in XQEMU

Compilation of Xbox Controller Hardware Research