mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-15 09:58:44 +01:00
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#pragma once
|
|
#include <dsp/filter.h>
|
|
#include <dsp/resampling.h>
|
|
#include <dsp/source.h>
|
|
#include <dsp/math.h>
|
|
#include <dsp/demodulator.h>
|
|
#include <dsp/routing.h>
|
|
#include <dsp/sink.h>
|
|
#include <dsp/correction.h>
|
|
#include <dsp/vfo.h>
|
|
#include <io/audio.h>
|
|
#include <module.h>
|
|
|
|
class SigPath {
|
|
public:
|
|
SigPath();
|
|
void init(std::string vfoName, uint64_t sampleRate, int blockSize, dsp::stream<dsp::complex_t>* input);
|
|
void start();
|
|
void setSampleRate(float sampleRate);
|
|
|
|
void setVFOFrequency(long frequency);
|
|
|
|
void updateBlockSize();
|
|
|
|
void setDemodulator(int demod);
|
|
|
|
enum {
|
|
DEMOD_FM,
|
|
DEMOD_NFM,
|
|
DEMOD_AM,
|
|
DEMOD_USB,
|
|
DEMOD_LSB,
|
|
_DEMOD_COUNT
|
|
};
|
|
|
|
private:
|
|
static int sampleRateChangeHandler(void* ctx, float sampleRate);
|
|
|
|
dsp::stream<dsp::complex_t> input;
|
|
|
|
// Demodulators
|
|
dsp::FMDemodulator demod;
|
|
dsp::AMDemodulator amDemod;
|
|
dsp::SSBDemod ssbDemod;
|
|
|
|
// Audio output
|
|
dsp::FloatFIRResampler audioResamp;
|
|
|
|
std::string vfoName;
|
|
|
|
float sampleRate;
|
|
int blockSize;
|
|
int _demod;
|
|
}; |