Circular Buffer, with configurable buffer size. Size must be power of 2! More...
#include "nz_circularBuffer.h"
Go to the source code of this file.
Circular Buffer, with configurable buffer size. Size must be power of 2!
This module contains the implementation for a Circular Buffer, as defined in the nz_circularBuffer.h interface. For this implementation, the size of all buffers must be a power of 2 value, for example 8, 16, 32, 64, 128... This condition enables faster and smaller code than for a variable size circular buffer.