Allow kerchunk audio to pass through.

This commit is contained in:
Jonathan Naylor 2020-04-19 21:40:51 +01:00
parent 1aef1a39f2
commit 5ed8eeda6f
1 changed files with 1 additions and 1 deletions

2
FM.cpp
View File

@ -75,7 +75,7 @@ void CFM::samples(bool cos, q15_t* samples, uint8_t length)
return;
// Only let audio through when relaying audio
if (m_state != FS_RELAYING) {
if (m_state != FS_RELAYING && m_state != FS_KERCHUNK) {
for (uint8_t i = 0U; i < length; i++)
samples[i] = 0;
}