mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-19 14:52:43 +00:00
added invert iq option
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
#include "../dsp/routing/splitter.h"
|
||||
#include "../dsp/channel/rx_vfo.h"
|
||||
#include "../dsp/sink/handler_sink.h"
|
||||
#include "../dsp/math/conjugate.h"
|
||||
#include <fftw3.h>
|
||||
|
||||
class IQFrontEnd {
|
||||
@@ -27,6 +28,7 @@ public:
|
||||
|
||||
void setBuffering(bool enabled);
|
||||
void setDecimation(int ratio);
|
||||
void setInvertIQ(bool enabled);
|
||||
void setDCBlocking(bool enabled);
|
||||
|
||||
void bindIQStream(dsp::stream<dsp::complex_t>* stream);
|
||||
@@ -65,6 +67,7 @@ protected:
|
||||
|
||||
// Pre-processing chain
|
||||
dsp::multirate::PowerDecimator<dsp::complex_t> decim;
|
||||
dsp::math::Conjugate conjugate;
|
||||
dsp::correction::DCBlocker<dsp::complex_t> dcBlock;
|
||||
dsp::chain<dsp::complex_t> preproc;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user