Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Commits
6447bda0
Commit
6447bda0
authored
Jun 17, 2018
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fixed HID report parser corruption when parsing PUSH and POP report item elements.
parent
16f4492e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
LUFA/DoxygenPages/ChangeLog.txt
+1
-0
1 addition, 0 deletions
LUFA/DoxygenPages/ChangeLog.txt
LUFA/Drivers/USB/Class/Common/HIDParser.c
+1
-1
1 addition, 1 deletion
LUFA/Drivers/USB/Class/Common/HIDParser.c
with
2 additions
and
1 deletion
LUFA/DoxygenPages/ChangeLog.txt
+
1
−
0
View file @
6447bda0
...
...
@@ -25,6 +25,7 @@
* - Fixed incorrect endpoint bank setup on the UC3 architecture (thanks to Andrus Aaslaid)
* - Fixed CDC_Device_Send*_P() and CDC_Host_Send*_P() variant functions not compiled out for UC3 architecture
* - Fixed USB_STRING_DESCRIPTOR_ARRAY() not accepting more than two byte long arrays
* - Fixed HID report parser corruption when parsing PUSH and POP report item elements
* - Library Applications:
* - Fixed bootloaders not disabling global interrupts during erase and write operations (thanks to Zoltan)
* - Fixed bootloaders accepting flash writes to the bootloader region (thanks to NicoHood)
...
...
This diff is collapsed.
Click to expand it.
LUFA/Drivers/USB/Class/Common/HIDParser.c
+
1
−
1
View file @
6447bda0
...
...
@@ -92,7 +92,7 @@ uint8_t USB_ProcessHIDReport(const uint8_t* ReportData,
memcpy
((
CurrStateTable
+
1
),
CurrStateTable
,
sizeof
(
HID_
ReportItem
_t
));
sizeof
(
HID_
StateTable
_t
));
CurrStateTable
++
;
break
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment