MBSD / Mbed 2 deprecated AEB_TERATERM

Dependencies:   mbed

Fork of AEB by Vincenzo Comito

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CircularBuffer.h Source File

CircularBuffer.h

00001 #pragma once
00002 
00003 #include <vector>
00004 //
00005 class CircularBuffer {
00006     public:
00007     
00008     CircularBuffer(int size);
00009     
00010     void push_back(float v);
00011     float median();
00012     
00013     private:
00014     std::vector<float> values;
00015     int size;
00016 };