From 5ed8eeda6fac0b9d143c5f5c62b90ab555ecf4c8 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sun, 19 Apr 2020 21:40:51 +0100 Subject: [PATCH] Allow kerchunk audio to pass through. --- FM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FM.cpp b/FM.cpp index 4528d90..ee060b1 100644 --- a/FM.cpp +++ b/FM.cpp @@ -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; }