All comments in the library, bootloaders, demos and projects have now been spell...
[pub/USBasp.git] / Demos / Device / USBtoSerial / RingBuff.h
index 4b6bfde..23288d8 100644 (file)
@@ -29,8 +29,8 @@
 */\r
 \r
 /* Buffer Configuration: */\r
-   /* Buffer length - select static size of created ringbuffers: */\r
-        #define BUFF_STATICSIZE 128      // Set to the static ringbuffer size for all ringbuffers (place size after define)\r
+   /* Buffer length - select static size of created ring buffers: */\r
+        #define BUFF_STATICSIZE 128      // Set to the static ring buffer size for all ring buffers (place size after define)\r
 \r
    /* Volatile mode - uncomment to make buffers volatile, for use in ISRs, etc: */\r
         #define BUFF_VOLATILE            // Uncomment to cause all ring buffers to become volatile (and atomic if multi-byte) in access\r
@@ -40,9 +40,9 @@
      // #define BUFF_DROPNEW          // Uncomment to cause full ring buffers to drop the new character when full\r
      // #define BUFF_NODROPCHECK      // Uncomment to ignore full ring buffer checks - checking left to user!\r
 \r
-   /* Underflow behaviour - select behaviour when Buffer_GetElement is called with an empty ringbuffer: */\r
-     //#define BUFF_EMPTYRETURNSZERO  // Uncomment to return 0 when an empty ringbuffer is read\r
-     #define BUFF_NOEMPTYCHECK        // Uncomment to disable checking of empty ringbuffers - checking left to user!\r
+   /* Underflow behaviour - select behaviour when Buffer_GetElement is called with an empty ring buffer: */\r
+     //#define BUFF_EMPTYRETURNSZERO  // Uncomment to return 0 when an empty ring buffer is read\r
+     #define BUFF_NOEMPTYCHECK        // Uncomment to disable checking of empty ring buffers - checking left to user!\r
        \r
    /* Buffer storage type - set the datatype for the stored data */\r
      #define BUFF_DATATYPE uint8_t    // Change to the data type that is going to be stored into the buffer\r