EmbeddedRingBuffer icon indicating copy to clipboard operation
EmbeddedRingBuffer copied to clipboard

A ring buffer designed to work with embedded devices, does not use heap allocations.

Results 1 EmbeddedRingBuffer issues
Sort by recently updated
recently updated
newest added

In the original version , the code: ``` #include using namespace std; #include "RingBuffer.h" RingBuffer rb; int main() { for (int i = 0; i < 8; ++i) { rb.Append(i);...