| 70 | } |
| 71 | |
| 72 | uint8_t * const CircularBlockBuffer::getReadPointer(int n) { |
| 73 | return &(_buffer[positiveOffset(_readBlock, n) * _blockSize]); |
| 74 | } |
| 75 | |
| 76 | int CircularBlockBuffer::get_contiguous_read_blocks() const { |
| 77 | return min(available_read(), _blockCount - _readBlock); |
no outgoing calls
no test coverage detected