1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-16 12:49:15 -04:00

AM and WFM modulators: use precision NCO for tone

This commit is contained in:
f4exb
2016-12-19 13:08:58 +01:00
parent d5019e916c
commit f95ebec3ec
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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;
+2 -1
View File
@@ -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;