aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Misc/RingBuffer.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2017.Dean Camera2017-04-181-2/+2
|
* Update copyrights to 2016.Dean Camera2016-01-311-2/+2
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-171-2/+2
|
* Fix ring buffer example.László Monda2014-02-011-5/+5
|
* Update copyrights for 2014.Dean Camera2014-01-041-2/+2
|
* Minor code style fix.Dean Camera2013-09-051-2/+4
|
* Ensure core library documentation sections use unique IDs.Dean Camera2013-06-011-8/+8
|
* Minor documentation improvements.Dean Camera2013-03-181-2/+2
|
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Minor code style and documentation changes.Dean Camera2012-07-311-3/+6
|
* Upgrade Doxygen configuration files for Doxygen 1.8.1, fix broken stylesheet ↵Dean Camera2012-05-201-5/+5
| | | | and footer HTML, add explicit spacing into documentation code fragments to prevent Doxygen from removing empty lines in the output.
* Minor documentation fixes - change \note entries to \warning where ↵Dean Camera2012-02-241-6/+6
| | | | appropriate and remove/update old documentation.
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-6/+6
| | | | trailing whitespace at the end of each line.
* Fixed ring buffer size limited to 255 elements, instead of the intended ↵Dean Camera2011-10-181-1/+1
| | | | 65535 elements.
* Add missing SVN eol-style property to files where it was missing.Dean Camera2011-07-151-303/+303
|
* Add missing function attributes to the RingBuffer driver to reduce the ↵Dean Camera2011-07-111-2/+10
| | | | | | chances of invalid usage. Fix duplicated LED driver functions in the Doxygen documentation.
* Oops - re-order Ringbuffer.h inline functions to prevent compile errors due ↵Dean Camera2011-07-111-25/+25
| | | | to forward references.
* Added new RingBuffer_GetFreeCount() function to the library miscellaneous ↵Dean Camera2011-07-111-8/+26
| | | | RingBuffer driver.
* Fixed compile error when FIXED_CONTROL_ENDPOINT_SIZE compile time option was ↵Dean Camera2011-06-201-0/+10
| | | | | | disabled, and a USE_*_DESCRIPTORS compile time option was not enabled on the AVR8s. Add C++ compatibility to some header files currently missing extern "C" linkage.
* Spell check library source code files.Dean Camera2011-06-011-1/+1
|
* Move global interrupt enable/disable functions out to Common.h and document ↵Dean Camera2011-04-081-12/+12
| | | | them.
* Add in a new common Delay_MS() function, which provides a blocking delay for ↵Dean Camera2011-04-081-21/+28
| | | | | | | | all architectures. Remove use of avr-libc specific ATOMIC_BLOCK, replace with a new per-architecture set of inline functions to retrieve and manipulate the global interrupt enable bit for each architecture. Add in documentation for the USB controller common interrupt routine which must be linked to the interrupt controller in the user application on the AVR32 UC3 architecture.
* More Doxygen updates for multiple architecture support.Dean Camera2011-02-201-1/+2
|
* Start update of documentation to support possible multiple architectures in ↵Dean Camera2011-02-201-4/+0
| | | | the future - alter \file documentation to automatically copy in the module documentation where possible.
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-1/+1
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Add more const-ness to the stream endpoint/pipe functions where possible.Dean Camera2011-02-131-6/+6
|
* Fix include path in the library RingBuffer.h header file.Dean Camera2011-02-121-3/+3
|
* Added new high level TWI packet read/write commands, altered behaviour of ↵Dean Camera2011-01-131-4/+4
| | | | | | the TWI_StartTransmission() function. Spell check source code files.
* Minor documentation improvements.Dean Camera2011-01-081-2/+2
|
* The FAST_STREAM_TRANSFERS compile time option has been removed due to lack ↵Dean Camera2011-01-081-5/+9
| | | | | | of use and low cost/benefit ratio. Add GCC_FORCE_POINTER_ACCESS() macro use to the RingBuffer library header, to attempt to force GCC into producing more efficient code for manipulating the buffers.
* Update Doxygen documentation configuration file for the main project ↵Dean Camera2011-01-031-1/+3
| | | | documentation to the latest version. Add missing data structure documentation briefs.
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Rename RingBuffer header functions and typedefs from RingBuff_* to ↵Dean Camera2010-12-311-10/+10
| | | | RingBuffer_* so that it matches the header name.
* More minor documentation corrections.Dean Camera2010-12-261-18/+18
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-2/+5
| | | | fix incorrect and missing section names.
* Added basic driver example use code to the library documentation.Dean Camera2010-12-261-2/+2
| | | | Made the USARTStream global public and documented in the SerialStream module, allowing for the serial USART stream to be accessed via its handle rather than via the implicit stdout and stdin streams.
* Make a new general RingBuffer.h misc library driver, instead of the ↵Dean Camera2010-12-261-0/+254
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.