aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/XPLAINBridge/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2017.Dean Camera2017-04-182-4/+4
|
* Update copyrights to 2016.Dean Camera2016-01-312-4/+4
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-172-4/+4
|
* Update copyrights for 2014.Dean Camera2014-01-042-5/+5
|
* Update copyright year to 2013.Dean Camera2013-01-032-4/+4
|
* Minor documentation improvements.Dean Camera2012-10-052-2/+2
|
* AppConfigHeaders: Make sure that in applications using an AppConfig.h ↵Dean Camera2012-05-151-1/+2
| | | | configuration file, all application headers include the configuration file.
* Update file contributor copyrights for 2012.Dean Camera2012-02-042-2/+2
|
* Update file header copyrights for 2012.Dean Camera2012-02-042-2/+2
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-0/+1
| | | | trailing whitespace at the end of each line.
* Spell check library source code files.Dean Camera2011-06-011-1/+1
|
* Updated the software USART code in the XPLAIN Bridge application so that the ↵Dean Camera2011-03-151-2/+4
| | | | incomming bits are sampled at their mid-point instead of starting point, to give maximum reliability (thanks to Anton).
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-0/+1
| | | | | | to the same module as they are declared in. Tighten up the HID class bootloader code slightly, document that it currently exceeds 2KB of bootloader space for all models other than the Series 2 USB AVRs.
* Update copyright year on all source files.Dean Camera2011-01-012-4/+4
|
* Make a new general RingBuffer.h misc library driver, instead of the ↵Dean Camera2010-12-262-212/+0
| | | | | | | | per-application LightweightRingBuff.h ring buffers. Change over projects to use the new driver. Add ORDERED_EP_CONFIG to the device Projects (only) that use only a single class driver, or where the endpoint ordering is fixed, to save on compiled binary size. Added new GCC_FORCE_POINTER_ACCESS() macro to correct GCC's mishandling of struct pointers.
* Added new RingBuffer_Peek() function to the lightweight ring buffer headers.Dean Camera2010-12-121-0/+11
|
* Fix typos in the XPLAINBridge project preventing compilation.Dean Camera2010-11-261-2/+2
|
* Changed the XPLAINBridge software UART to use the regular CTC mode instead ↵Dean Camera2010-11-252-8/+8
| | | | of the alternative CTC mode via the Input Capture register, to reduce user confusion.
* Fix XPLAINBridge code broken during the changes to the Rescue Clock ↵Dean Camera2010-11-021-5/+5
| | | | | | generation in the AVRISP-MKII clone project. Change over all low level host mode project's descriptor comparator routines to perform the descriptor casting in a temp variable to make the code clearer and easier to modify (despite being more verbose).
* Rescue clock of the AVRISP-MKII moved to the AVR's OCR1A pin, so that the ↵Dean Camera2010-11-021-5/+5
| | | | clock can be generated at all times when 125KHz ISP programming mode is selected.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-283-5/+5
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Fix SoftUART.c not compiling due to accidental check in of changes not yet ↵Dean Camera2010-10-131-3/+3
| | | | complete in the rest of the XPLAINBridge project code.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-133-37/+39
| | | | tool made by Laszlo Monda
* Fixed ISR definition conflict in the XPLAIN bridge between the software UART ↵Dean Camera2010-10-102-11/+16
| | | | and the AVRISP-MKII ISP modules.
* Add better description of the Ultra-Lightweight Ring Buffer header files.Dean Camera2010-08-291-1/+8
|
* Fix XPLAINBridge project discarding characters from the USB interface due to ↵Dean Camera2010-08-012-56/+73
| | | | | | | | | | | | | | 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 Camera2010-07-302-3/+3
| | | | EN-GB spelling dictionary.
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-212-3/+5
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Added ability to set the serial baud rate via the user's terminal in the ↵Dean Camera2010-07-152-7/+14
| | | | XPLAINBridge project.
* Fixed possible buffer overrun in the XPLAINBridge project when in serial ↵Dean Camera2010-07-151-0/+20
| | | | bridge mode.
* Reduce prescaler of the flush timer in the USBtoSerial demo, so that buffer ↵Dean Camera2010-07-121-1/+1
| | | | overruns will not occur regardless of hardware and baud rate settings.
* 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.
* Add glitch protection to the software UART in the XPLAINBridge project code, ↵Dean Camera2010-07-121-7/+13
| | | | so that very short glitches on the RX line don't cause a frame reception to occur.
* Major changes to the XPLAINBridge software UART code for performance and ↵Dean Camera2010-07-112-51/+45
| | | | reliability. New code reduces the number of missed characters and misread characters.
* Make XPLAINBridge serial bridge much more reliable for the reception of ↵Dean Camera2010-06-241-11/+5
| | | | characters from the XMEGA through the software UART interface.
* 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.
* Spell check code and manual pages. Remove custom Doxygen CSS stylesheet, as ↵Dean Camera2010-06-161-2/+2
| | | | the new 1.7 Doxygen's default stylesheet is much better.
* Slight improvements to the reliability of the software UART in the ↵Dean Camera2010-06-121-23/+20
| | | | XPLAINBridge project.
* Oops - light weight ring buffer documentation used \ref instead of \param to ↵Dean Camera2010-06-101-4/+4
| | | | document function parameters.
* Add missing documentation to the lightweight ring buffer code in the ↵Dean Camera2010-06-101-89/+119
| | | | XPLAINBridge project.
* Minor documentation cleanups.Dean Camera2010-06-031-2/+2
|
* Replace ring buffer library in Benito and USBtoSerial projects with the new ↵Dean Camera2010-05-261-2/+2
| | | | lightweight ring buffer header to improve reliability.
* Add better documentation to the Software UART code in the XPLAINBridge project.Dean Camera2010-05-261-35/+71
|
* Switch software UART over to timer 1 and remove timer prescaling to try to ↵Dean Camera2010-05-262-16/+16
| | | | prevent integer rounding errors and thus minimize the possible error of the UART code.
* Rename software USART driver globals to make the code more in line with the ↵Dean Camera2010-05-262-11/+11
| | | | rest of the XPLAINBridge project.
* Make software USART used in the XPLAINBridge project directly check and ↵Dean Camera2010-05-263-57/+37
| | | | store into the ring buffers, rather than polling from the main program loop to avoid added latency.
* Create a new LightweightRingBuffer.h header file for the XPLAIN project to ↵Dean Camera2010-05-261-0/+89
| | | | abstract out the new ring buffer without a performance penalty.
* The RingBuff library code has been replaced in the XPLAINBridge project with ↵Dean Camera2010-05-264-262/+27
| | | | an ultra lightweight buffer to help improve the reliability of the bridge.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-084-438/+438
| | | | correctly converted to the target system's native end of line style.
* Add const keyword to the demo function parameters where possible.Dean Camera2010-04-181-3/+3
|