Xbox one BT support - #643
Open
strycore wants to merge 2 commits into
Open
Conversation
Xbox One S/X controllers on original (pre-Series) firmware send a 16-byte HID report over Bluetooth: 10-bit triggers, 4-bit hat switch, and 10 buttons packed in 2 bytes. The driver only accepted the 17-byte Xbox Series layout and rejected every packet from these pads. Dispatch on report size, parse the 16-byte layout, and convert it to the Series report so downstream state diffing stays single-path. Unexpected sizes now log a warning instead of erroring out of the poll loop. Also fixes the right-trigger event diffing against the left trigger's previous state. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The Xbox One BT pad delivers its guide button through its kbd handler as KEY_MENU. Note this mapping is global to all evdev sources, so a keyboard's context-menu key also emits Guide; scope it per-device before upstreaming. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds support for the Xbox One controller connected via Bluetooth. Tested on GameOS, the controller is now working.