We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fddfefe commit d39c4d9Copy full SHA for d39c4d9
Source code/Vibrosonics/CircularBuffer.h
@@ -23,15 +23,15 @@ class CircularBuffer {
23
this->bufferIndex = 0;
24
};
25
26
- CircularBuffer(T* bufferPtr, uint16_t numRows, uint16_t numColumns)
+ CircularBuffer(T* bufferPtr, uint16_t numRows, uint16_t numCols)
27
{
28
this->bufferPtr = bufferPtr;
29
this->numRows = numRows;
30
this->numCols = numCols;
31
32
33
34
- void setBuffer(T* bufferPtr, uint16_t numRows, uint16_t numColumns)
+ void setBuffer(T* bufferPtr, uint16_t numRows, uint16_t numCols)
35
36
37
0 commit comments