TBufferType Enumeration

Header: Dew.Signal/SignalProcessing.h · Cross-compiler

enum class TBufferType : unsigned int;

Defines signal buffering type.

Defines how the data is managed within the buffer.

Values

NameDescription
bftScrollingThe data resides in the buffer until new data comming in to the buffer pushes it out. This mode is usefull for signal analysis.
bftStoringThe buffer will be increasing until some user defined size is reached. The buffer must then be reset.
bftStreamingOnce the data is read, it is "deleted" from the buffer. This mode is usefull for filtering and signal processing.