AM and WFM modulators: use precision NCO for tone

pull/27/head
f4exb 2016-12-19 13:08:58 +01:00
rodzic d5019e916c
commit f95ebec3ec
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -24,6 +24,7 @@
#include "dsp/basebandsamplesource.h"
#include "dsp/nco.h"
#include "dsp/ncof.h"
#include "dsp/interpolator.h"
#include "dsp/movingaverage.h"
#include "dsp/agc.h"
@ -282,7 +283,7 @@ private:
Config m_running;
NCO m_carrierNco;
NCO m_toneNco;
NCOF m_toneNco;
Complex m_modSample;
Interpolator m_interpolator;
Real m_interpolatorDistance;

Wyświetl plik

@ -24,6 +24,7 @@
#include "dsp/basebandsamplesource.h"
#include "dsp/nco.h"
#include "dsp/ncof.h"
#include "dsp/interpolator.h"
#include "dsp/fftfilt.h"
#include "dsp/movingaverage.h"
@ -289,7 +290,7 @@ private:
Config m_running;
NCO m_carrierNco;
NCO m_toneNco;
NCOF m_toneNco;
float m_modPhasor; //!< baseband modulator phasor
Complex m_modSample;
Interpolator m_interpolator;