Update hid_mouse_absolute.go

Added attribute to remove unnecessary and potentially confusing out endpoint descriptor.
This commit is contained in:
rmschooley 2025-05-26 22:46:02 -05:00 committed by GitHub
parent b7411958af
commit fd4b243e60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -11,9 +11,10 @@ var absoluteMouseConfig = gadgetConfigItem{
path: []string{"functions", "hid.usb1"},
configPath: []string{"hid.usb1"},
attrs: gadgetAttributes{
"protocol": "2",
"subclass": "1",
"report_length": "6",
"protocol": "2",
"subclass": "1",
"report_length": "6",
"no_out_endpoint": "1",
},
reportDesc: absoluteMouseCombinedReportDesc,
}