CTCSS tones are added to the audio, not replacing it.

This commit is contained in:
Jonathan Naylor 2020-04-17 14:11:42 +01:00
parent bc889f3d26
commit 4a85122483
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ uint8_t CFMCTCSSTX::setParams(uint8_t frequency, uint8_t level)
void CFMCTCSSTX::getAudio(q15_t* samples, uint8_t length)
{
for (uint8_t i = 0U; i < length; i++) {
samples[i] = m_values[m_n];
samples[i] += m_values[m_n];
m_n++;
if (m_n >= m_length)