aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/USBtoSerial/Lib/LightweightRingBuff.h
Commit message (Collapse)AuthorAgeFilesLines
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-2/+2
| | | | EN-GB spelling dictionary.
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-211-2/+4
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Fixed possible buffer overrun in the XPLAINBridge project when in serial ↵Dean Camera2010-07-151-0/+20
| | | | bridge mode.
* Alter the ring buffer library headers to have both atomic and non-atomic ↵Dean Camera2010-07-121-4/+37
| | | | | | insertion/removal routines. Modify the existing projects so that buffer operations performed in an ISR use the shorted non-atomic versions, as they are already performed in a blocking ISR. Alter USBtoSerial demo so that it does not enter a blocking loop to send data from the USB to the USART, as this can cause dropped bytes in the reception code if large amounts of data are sent in both directions at the same time. Added a flush timer to the USBtoSerial code for the USART to USB interface, so that multiple bytes can be sent in the same USB packet.
* Maximise the size of the ring buffers in the Benito/XPLAINBridge/USBtoSerial ↵Dean Camera2010-06-241-1/+1
| | | | projects, so that they should never become full under normal conditions.
* Oops - light weight ring buffer documentation used \ref instead of \param to ↵Dean Camera2010-06-101-4/+4
| | | | document function parameters.
* Document lightweight ring buffer header files.Dean Camera2010-06-061-20/+50
|
* Add the svn:eol-style property onto new files which where missing it to ↵Dean Camera2010-06-061-89/+89
| | | | ensure uniform line endings.
* Replace ring buffer library in Benito and USBtoSerial projects with the new ↵Dean Camera2010-05-261-0/+90
lightweight ring buffer header to improve reliability.