1
0
forked from fsfw/fsfw

Some more debugging output switched on

This commit is contained in:
2020-01-12 14:18:12 +01:00
parent 0ce67de8c8
commit a8247eb2f0
3 changed files with 6 additions and 5 deletions

View File

@ -5,8 +5,9 @@
#include <stddef.h>
/**
* Circular buffer implementation, useful for buffering into data streams.
* Note that the deleteData() has to be called to increment the read pointer
* @brief Circular buffer implementation, useful for buffering into data streams.
* @details Note that the deleteData() has to be called to increment the read pointer
* @ingroup containers
*/
class SimpleRingBuffer: public RingBufferBase<> {
public: