kopia lustrzana https://github.com/f4exb/sdrangel
Test source: limit FM deviation to half the sample rate
rodzic
1d9ab62a4a
commit
6f074b39fa
|
@ -173,7 +173,7 @@ void TestSourceThread::setAMModulation(float amModulation)
|
|||
void TestSourceThread::setFMDeviation(float deviation)
|
||||
{
|
||||
float fmDeviationUnit = deviation / (float) m_samplerate;
|
||||
m_fmDeviationUnit = fmDeviationUnit < 0.0f ? 0.0f : fmDeviationUnit > 1.0f ? 1.0f : fmDeviationUnit;
|
||||
m_fmDeviationUnit = fmDeviationUnit < 0.0f ? 0.0f : fmDeviationUnit > 0.5f ? 0.5f : fmDeviationUnit;
|
||||
qDebug("TestSourceThread::setFMDeviation: m_fmDeviationUnit: %f", m_fmDeviationUnit);
|
||||
}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue