1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-13 03:41:47 -05:00

Channel Analyzer: use precision NCO

This commit is contained in:
f4exb 2016-12-19 08:26:48 +01:00
parent eca3809ab9
commit 3820345539
2 changed files with 2 additions and 4 deletions

View File

@ -35,7 +35,6 @@ ChannelAnalyzer::ChannelAnalyzer(BasebandSampleSink* sampleSink) :
m_sampleRate = 96000;
m_frequency = 0;
m_nco.setFreq(m_frequency, m_sampleRate);
m_nco_test.setFreq(m_frequency, m_sampleRate);
m_undersampleCount = 0;
m_sum = 0;
m_usb = true;

View File

@ -20,7 +20,7 @@
#include <dsp/basebandsamplesink.h>
#include <QMutex>
#include <vector>
#include "dsp/nco.h"
#include "dsp/ncof.h"
#include "dsp/fftfilt.h"
#include "audio/audiofifo.h"
#include "util/message.h"
@ -93,8 +93,7 @@ private:
bool m_ssb;
Real m_magsq;
NCO m_nco;
NCO m_nco_test;
NCOF m_nco;
fftfilt* SSBFilter;
fftfilt* DSBFilter;