Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵ | Dean Camera | 2010-10-28 | 1 | -1/+1 |
| | | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists. | ||||
* | Clean up excessive whitespace at the end of each line using the wspurify ↵ | Dean Camera | 2010-10-13 | 1 | -19/+20 |
| | | | | tool made by Laszlo Monda | ||||
* | Add better description of the Ultra-Lightweight Ring Buffer header files. | Dean Camera | 2010-08-29 | 1 | -1/+8 |
| | |||||
* | Fix XPLAINBridge project discarding characters from the USB interface due to ↵ | Dean Camera | 2010-08-01 | 1 | -55/+72 |
| | | | | | | | | | | | | | | a double read from the endpoint. Make XPLAINBridge and USBtoSerial projects more reliable by forcing a flush if the UART-to-USB buffer becomes nearly full. Reduce locking in the LightweightRingBuffer.h header files by only locking on the update of the buffer count, and require insertions and removals from each buffer to occur in only one execution thread. Fix CDC_*_ReceiveByte() returning 0 when the interface is not configured, instead of the new -1 error value. Fix CDC_Host_ReceiveByte() not re-freezing the pipe if no packet has been received. Remove redundant Pipe token set commands in the CDC and RNDIS host class drivers. | ||||
* | More spell checking of all source files -- correct missed errors, switch to ↵ | Dean Camera | 2010-07-30 | 1 | -2/+2 |
| | | | | EN-GB spelling dictionary. | ||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 1 | -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 Camera | 2010-07-15 | 1 | -0/+20 |
| | | | | bridge mode. | ||||
* | Alter the ring buffer library headers to have both atomic and non-atomic ↵ | Dean Camera | 2010-07-12 | 1 | -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 Camera | 2010-06-24 | 1 | -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 Camera | 2010-06-10 | 1 | -4/+4 |
| | | | | document function parameters. | ||||
* | Document lightweight ring buffer header files. | Dean Camera | 2010-06-06 | 1 | -20/+50 |
| | |||||
* | Add the svn:eol-style property onto new files which where missing it to ↵ | Dean Camera | 2010-06-06 | 1 | -89/+89 |
| | | | | ensure uniform line endings. | ||||
* | Replace ring buffer library in Benito and USBtoSerial projects with the new ↵ | Dean Camera | 2010-05-26 | 3 | -236/+90 |
| | | | | lightweight ring buffer header to improve reliability. | ||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 2 | -236/+236 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 2 | -4/+4 |
| | |||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 2 | -14/+14 |
| | |||||
* | Add const qualifier to the parameters of Projects' functions where possible. | Dean Camera | 2009-12-20 | 2 | -8/+8 |
| | |||||
* | Spell check all source code variables, comments and strings. | Dean Camera | 2009-11-09 | 1 | -2/+2 |
| | |||||
* | Moved USBtoSerial demo the Projects directory, as it is simply an expanded ↵ | Dean Camera | 2009-10-18 | 2 | -0/+236 |
CDC demo. Added const qualifier to Endpoint/Pipe stream write routines. |