| 17 | } |
| 18 | |
| 19 | void TeensyAudioRecorder::reset() { |
| 20 | mBlockQueue.clear(); |
| 21 | mTotalBlocksReceived = 0; |
| 22 | mTotalBlocksDropped = 0; |
| 23 | } |
| 24 | |
| 25 | void TeensyAudioRecorder::update() { |
| 26 | audio_block_t* leftBlock = receiveReadOnly(0); // Left channel |
no test coverage detected