Skip to content
GitLab
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
5e787a4b
Commit
5e787a4b
authored
Mar 03, 2009
by
Dean Camera
Browse files
Updated changelog to reflect recent commit changes.
parent
ea7039a0
Changes
3
Hide whitespace changes
Inline
Side-by-side
LUFA/ChangeLog.txt
View file @
5e787a4b
...
...
@@ -23,6 +23,9 @@
* next time the device is attached to a host.
* - Added new F_CLOCK compile time constant to the library and makefiles, to give the raw input clock (used to feed the PLL before any
* clock prescaling is performed) frequency, so that the PLL prescale mask can be determined
* - Changed stream wait timeout counter to be 16-bit, so that very long timeout periods can be set for correct communications with
* badly designed hosts or devices which greatly exceed the USB specification limits
* - Mass Storage Host demo now uses a USB_STREAM_TIMEOUT_MS of two seconds to maintain compatibility with poorly designed devices
*
* \section Sec_ChangeLog090209 Version 090209
*
...
...
LUFA/Drivers/USB/LowLevel/Endpoint.c
View file @
5e787a4b
...
...
@@ -83,7 +83,7 @@ void Endpoint_ClearEndpoints(void)
uint8_t
Endpoint_WaitUntilReady
(
void
)
{
uint
8
_t
TimeoutMSRem
=
USB_STREAM_TIMEOUT_MS
;
uint
16
_t
TimeoutMSRem
=
USB_STREAM_TIMEOUT_MS
;
USB_INT_Clear
(
USB_INT_SOFI
);
...
...
LUFA/Drivers/USB/LowLevel/Pipe.c
View file @
5e787a4b
...
...
@@ -68,7 +68,7 @@ void Pipe_ClearPipes(void)
uint8_t
Pipe_WaitUntilReady
(
void
)
{
uint
8
_t
TimeoutMSRem
=
USB_STREAM_TIMEOUT_MS
;
uint
16
_t
TimeoutMSRem
=
USB_STREAM_TIMEOUT_MS
;
USB_INT_Clear
(
USB_INT_HSOFI
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment