Add support for DragonRise/Manta generic USB gamepad (VID 081F, PID E401)#5
Open
jedgarpark wants to merge 1 commit into
Open
Add support for DragonRise/Manta generic USB gamepad (VID 081F, PID E401)#5jedgarpark wants to merge 1 commit into
jedgarpark wants to merge 1 commit into
Conversation
…401) Routes HID reports for this device to a dedicated parser that handles its non-standard layout: 5 axis bytes precede the button byte, with face buttons in byte 5 (bit 5 = A/O, bit 6 = B/X). Layout confirmed empirically using a PICO-8 diagnostic cart. Co-Authored-By: Claude Sonnet 4.6 <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.
Summary
input_manta_report()— a dedicated HID report parser for the DragonRise/Manta generic USB gamepad (VID0x081F, PID0xE401), commonly sold as an unlicensed SNES-style USB controllermain.cpp, alongside the existing Sony and XInput handlersMANTA_CONTROLLER.mddocumenting the confirmed HID report layoutThe device has a non-standard report format: 5 axis bytes precede the button byte, so the generic
input_gamepad_report()misreads it. The correct layout was determined empirically using a PICO-8 diagnostic cart (input.manta_raw()Lua function + visual bit display).Confirmed report layout:
btn(4)); bit 6: B→X (btn(5))Test plan
[Controller] Mounted: VID=081F PID=E401on serialbtn(4))btn(5))🤖 Generated with Claude Code