Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DS1820 HighSpeedAnalogIn devices mbed
CircularBuffer.h
00001 #include "mbed.h" 00002 #ifndef _Circular_Buffer_ 00003 #define _Circular_Buffer_ 00004 class CircularBuffer { 00005 char *bufIn; 00006 uint16_t index; 00007 bool estouro; 00008 uint16_t tam; 00009 bool circular; 00010 00011 public: 00012 CircularBuffer(uint16_t,bool); 00013 char* get(); 00014 char* getRowBuffer(); 00015 void putc(char); 00016 uint16_t getLength(); 00017 void del(); 00018 uint16_t fill(char *,uint16_t); 00019 00020 }; 00021 #endif
Generated on Wed Jul 13 2022 12:46:24 by
 1.7.2
 1.7.2