1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Replace NCOF with NCO as the latter has better SFDR.

This commit is contained in:
Jon Beniston
2026-01-25 11:11:20 +00:00
parent 29357a8244
commit bffe587c18
17 changed files with 35 additions and 40 deletions
@@ -28,7 +28,7 @@
#include "dsp/samplesinkfifo.h"
#include "dsp/decimators.h"
#include "dsp/ncof.h"
#include "dsp/nco.h"
#include "util/messagequeue.h"
#include "testsourcesettings.h"
@@ -70,8 +70,8 @@ private:
quint32 m_chunksize;
SampleVector m_convertBuffer;
SampleSinkFifo* m_sampleFifo;
NCOF m_nco;
NCOF m_toneNco;
NCO m_nco;
NCO m_toneNco;
int m_frequencyShift;
int m_toneFrequency;
TestSourceSettings::Modulation m_modulation;