Small library for using circular buffers

Dependents:   CircularBufferExample

This library provides circular buffers. The main difference with other circular buffer libraries is that it does not use dynamic memory allocation for storing data. Instead, the buffer is allocated statically.

Three types of buffer exist by default :

  • SmallCircularBuffer (32 bytes)
  • MediumCircularBuffer (128 bytes)
  • BigCircularBuffer (512 bytes)

You can also define buffers with specific size :

CircularBuffer<4> buffer;    // 4 bytes buffer
CircularBuffer<102> buffer2; // 102 bytes buffer

Import programCircularBufferExample

This example shows how to use the CircularBuffer library.

Files at this revision

API Documentation at this revision

Comitter:
feb11
Date:
Fri Sep 20 10:32:30 2013 +0000
Parent:
3:9a45d6675e65
Child:
5:8204677dc3c4
Commit message:
added comments

Changed in this revision

CircularBuffer.h Show annotated file Show diff for this revision Revisions of this file
--- a/CircularBuffer.h	Fri Sep 20 10:04:23 2013 +0000
+++ b/CircularBuffer.h	Fri Sep 20 10:32:30 2013 +0000
@@ -1,19 +1,55 @@
 #ifndef CIRCULAR_BUFFER_H
 #define CIRCULAR_BUFFER_H
 
+/** This class implements a static circular buffer.
+*/
 template<size_t T>
 class CircularBuffer
 {
     public :
     
+        /** Default constructor
+        */
         CircularBuffer();
         
+        /** Reads data from buffer
+        
+            \param data output buffer 
+            \param length Maximum number of bytes to read
+            \return Number of bytes read
+            
+            \note The return value cannot exceed max(length,capacity)
+        */
         uint32_t read(uint8_t *data, uint32_t length);
+        
+        /** Writes data in buffer
+        
+            \param data input buffer
+            \param length Maximum number of bytes to write
+            \return Number of bytes wrote
+            
+            \note The return value cannot exceed max(length,capacity)
+        */
         uint32_t write(uint8_t *data, uint32_t length);
         
+        /** Returns the total capacity of this buffer
+            \return Capacity of buffer
+        */
         uint32_t getCapacity() const;
+        
+        /** Returns the number of bytes available in the buffer
+            \return Number of bytes available in the buffer
+        */
         uint32_t getSize() const;  
+        
+        /** Checks if this buffer is empty
+            \return True if the buffer is empty, false otherwise
+        */
         bool isEmpty() const;
+        
+        /** Checks if this buffer is full
+            \return True if the buffer is full, false otherwise
+        */        
         bool isFull() const;
         
     private :