Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
e2d1b437
Commit
e2d1b437
authored
Feb 18, 2018
by
Dean Camera
Browse files
Fixed incorrect endpoint bank setup on the UC3 architecture (thanks to Andrus Aaslaid).
parent
417d3438
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/DoxygenPages/ChangeLog.txt
View file @
e2d1b437
...
...
@@ -16,6 +16,7 @@
* - Fixed DeviceUsesOUTPipe flag not being set correctly in the HID host class driver (thanks to Wolfgang Schnerring)
* - Fixed CDC Device class driver's internal serial stream created by \ref CDC_Device_CreateStream not returning the written
* character after a successful write (thanks to NicoHood)
* - Fixed incorrect endpoint bank setup on the UC3 architecture (thanks to Andrus Aaslaid)
* - 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)
...
...
LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
View file @
e2d1b437
...
...
@@ -216,7 +216,7 @@
(
AVR32_USBB_ALLOC_MASK
|
((
uint32_t
)
Type
<<
AVR32_USBB_EPTYPE_OFFSET
)
|
((
Address
&
ENDPOINT_DIR_IN
)
?
AVR32_USBB_UECFG0_EPDIR_MASK
:
0
)
|
((
Banks
>
1
)
?
AVR32_USBB_UECFG0_EPBK_
SING
LE
:
AVR32_USBB_UECFG0_EPBK_
DOUBLE
)
|
((
(
Banks
>
1
)
?
AVR32_USBB_UECFG0_EPBK_
DOUB
LE
:
AVR32_USBB_UECFG0_EPBK_
SINGLE
)
<<
AVR32_USBB_EPBK_OFFSET
)
|
Endpoint_BytesToEPSizeMask
(
Size
)));
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment