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
738c9203
Commit
738c9203
authored
Oct 18, 2011
by
Dean Camera
Browse files
Fixed ring buffer size limited to 255 elements, instead of the intended 65535 elements.
parent
c6d6bdae
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/Drivers/Misc/RingBuffer.h
View file @
738c9203
...
...
@@ -113,7 +113,7 @@
uint8_t
*
Out
;
/**< Current retrieval location in the circular buffer. */
uint8_t
*
Start
;
/**< Pointer to the start of the buffer's underlying storage array. */
uint8_t
*
End
;
/**< Pointer to the end of the buffer's underlying storage array. */
uint
8
_t
Size
;
/**< Size of the buffer's underlying storage array. */
uint
16
_t
Size
;
/**< Size of the buffer's underlying storage array. */
uint16_t
Count
;
/**< Number of bytes currently stored in the buffer. */
}
RingBuffer_t
;
...
...
LUFA/ManPages/ChangeLog.txt
View file @
738c9203
...
...
@@ -22,7 +22,7 @@
*
* <b>Fixed:</b>
* - Core:
* -
None
* -
Fixed ring buffer size limited to 255 elements, instead of the intended 65535 elements.
* - Library Applications:
* - Added reliability patches to the AVRISP-MKII Clone project's PDI/TPI protocols (thanks to Justin Mattair)
*
...
...
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