| 296 | } |
| 297 | |
| 298 | void Processor::onVocal(function<void(u8)> callback) { |
| 299 | auto detector = getVocalDetector(); |
| 300 | detector->onVocal.add(callback); |
| 301 | } |
| 302 | |
| 303 | void Processor::onVocalStart(function<void()> callback) { |
| 304 | auto detector = getVocalDetector(); |
no test coverage detected