1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

M17 mod: updated lowpass filter gain so that FM deviation is correct

This commit is contained in:
f4exb 2022-07-01 19:12:39 +02:00
parent 8bc1a204c5
commit b69275949a

View File

@ -175,7 +175,7 @@ void M17ModSource::modulateSample()
if (carrier)
{
calculateLevel(t);
t1 = m_lowpass.filter(t) * 1.2f;
t1 = m_lowpass.filter(t) * 1.5f;
m_modPhasor += (m_settings.m_fmDeviation / (float) m_audioSampleRate) * t1;