Add better description of the Ultra-Lightweight Ring Buffer header files.
authorDean Camera <dean@fourwalledcubicle.com>
Sun, 29 Aug 2010 07:49:36 +0000 (07:49 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Sun, 29 Aug 2010 07:49:36 +0000 (07:49 +0000)
LUFA/ManPages/FutureChanges.txt
Projects/Benito/Lib/LightweightRingBuff.h
Projects/USBtoSerial/Lib/LightweightRingBuff.h
Projects/XPLAINBridge/Lib/LightweightRingBuff.h

index 020779b..d30d45d 100644 (file)
   *      -# Add ability to get number of bytes not written with pipe/endpoint write routines after an error
   *      -# Add standardized descriptor names to class driver structures
   *      -# Change makefiles to allow for absolute LUFA location to be used
   *      -# Add ability to get number of bytes not written with pipe/endpoint write routines after an error
   *      -# Add standardized descriptor names to class driver structures
   *      -# Change makefiles to allow for absolute LUFA location to be used
+  *      -# Re-add interrupt Pipe/Endpoint support
   *  - Documentation/Support
   *      -# Add detailed overviews of how each demo works
   *      -# Add board overviews
   *      -# Write LUFA tutorials
   *  - Documentation/Support
   *      -# Add detailed overviews of how each demo works
   *      -# Add board overviews
   *      -# Write LUFA tutorials
+  *      -# Add makefile template
   *  - Demos/Projects
   *      -# Multiple-Report HID device
   *      -# Device/Host USB bridge
   *  - Demos/Projects
   *      -# Multiple-Report HID device
   *      -# Device/Host USB bridge
index cb0f611..768e49a 100644 (file)
 
 /** \file
  *
 
 /** \file
  *
- *  Ultra lightweight ring buffer, for fast insertion/deletion.
+ *  Ultra lightweight ring buffer, for fast insertion/deletion. This uses inlined functions
+ *  for maximum speed. All buffers created with this library must be of the same size, however
+ *  multiple independant buffers can be created.
+ *
+ *  Note that for each buffer, insertion and removal operations may occur at the same time (via
+ *  a multithreaded ISR based system) however the same kind of operation (two or more insertions
+ *  or deletions) must not overlap. If there is possibility of two or more of the same kind of
+ *  operating occuring at the same point in time, atomic (mutex) locking should be used.
  */
  
 #ifndef _ULW_RING_BUFF_H_
  */
  
 #ifndef _ULW_RING_BUFF_H_
index cb0f611..768e49a 100644 (file)
 
 /** \file
  *
 
 /** \file
  *
- *  Ultra lightweight ring buffer, for fast insertion/deletion.
+ *  Ultra lightweight ring buffer, for fast insertion/deletion. This uses inlined functions
+ *  for maximum speed. All buffers created with this library must be of the same size, however
+ *  multiple independant buffers can be created.
+ *
+ *  Note that for each buffer, insertion and removal operations may occur at the same time (via
+ *  a multithreaded ISR based system) however the same kind of operation (two or more insertions
+ *  or deletions) must not overlap. If there is possibility of two or more of the same kind of
+ *  operating occuring at the same point in time, atomic (mutex) locking should be used.
  */
  
 #ifndef _ULW_RING_BUFF_H_
  */
  
 #ifndef _ULW_RING_BUFF_H_
index cb0f611..768e49a 100644 (file)
 
 /** \file
  *
 
 /** \file
  *
- *  Ultra lightweight ring buffer, for fast insertion/deletion.
+ *  Ultra lightweight ring buffer, for fast insertion/deletion. This uses inlined functions
+ *  for maximum speed. All buffers created with this library must be of the same size, however
+ *  multiple independant buffers can be created.
+ *
+ *  Note that for each buffer, insertion and removal operations may occur at the same time (via
+ *  a multithreaded ISR based system) however the same kind of operation (two or more insertions
+ *  or deletions) must not overlap. If there is possibility of two or more of the same kind of
+ *  operating occuring at the same point in time, atomic (mutex) locking should be used.
  */
  
 #ifndef _ULW_RING_BUFF_H_
  */
  
 #ifndef _ULW_RING_BUFF_H_