mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-04-07 15:55:40 +02:00
81 lines
2.6 KiB
C++
81 lines
2.6 KiB
C++
#pragma once
|
|
#include "../demod.h"
|
|
#include <dsp/demod/fm.h>
|
|
|
|
namespace demod {
|
|
class NFM : public Demodulator {
|
|
public:
|
|
NFM() {}
|
|
|
|
NFM(std::string name, ConfigManager* config, dsp::stream<dsp::complex_t>* input, double bandwidth, double audioSR) {
|
|
init(name, config, input, bandwidth, audioSR);
|
|
}
|
|
|
|
~NFM() { stop(); }
|
|
|
|
void init(std::string name, ConfigManager* config, dsp::stream<dsp::complex_t>* input, double bandwidth, double audioSR) {
|
|
this->name = name;
|
|
this->_config = config;
|
|
|
|
// Load config
|
|
_config->acquire();
|
|
bool modified = false;
|
|
if (config->conf[name][getName()].contains("lowPass")) {
|
|
_lowPass = config->conf[name][getName()]["lowPass"];
|
|
}
|
|
_config->release(modified);
|
|
|
|
|
|
// Define structure
|
|
demod.init(input, getIFSampleRate(), bandwidth, _lowPass);
|
|
}
|
|
|
|
void start() { demod.start(); }
|
|
|
|
void stop() { demod.stop(); }
|
|
|
|
void showMenu() {
|
|
if (ImGui::Checkbox(("Low Pass##_radio_wfm_lowpass_" + name).c_str(), &_lowPass)) {
|
|
demod.setLowPass(_lowPass);
|
|
_config->acquire();
|
|
_config->conf[name][getName()]["lowPass"] = _lowPass;
|
|
_config->release(true);
|
|
}
|
|
}
|
|
|
|
void setBandwidth(double bandwidth) {
|
|
demod.setBandwidth(bandwidth);
|
|
}
|
|
|
|
void setInput(dsp::stream<dsp::complex_t>* input) { demod.setInput(input); }
|
|
|
|
void AFSampRateChanged(double newSR) {}
|
|
|
|
// ============= INFO =============
|
|
|
|
const char* getName() { return "FM"; }
|
|
double getIFSampleRate() { return 50000.0; }
|
|
double getAFSampleRate() { return getIFSampleRate(); }
|
|
double getDefaultBandwidth() { return 12500.0; }
|
|
double getMinBandwidth() { return 1000.0; }
|
|
double getMaxBandwidth() { return getIFSampleRate(); }
|
|
bool getBandwidthLocked() { return false; }
|
|
double getDefaultSnapInterval() { return 2500.0; }
|
|
int getVFOReference() { return ImGui::WaterfallVFO::REF_CENTER; }
|
|
bool getDeempAllowed() { return true; }
|
|
bool getPostProcEnabled() { return true; }
|
|
int getDefaultDeemphasisMode() { return DEEMP_MODE_NONE; }
|
|
bool getFMIFNRAllowed() { return true; }
|
|
bool getNBAllowed() { return false; }
|
|
dsp::stream<dsp::stereo_t>* getOutput() { return &demod.out; }
|
|
|
|
private:
|
|
dsp::demod::FM<dsp::stereo_t> demod;
|
|
|
|
ConfigManager* _config = NULL;
|
|
|
|
bool _lowPass = true;
|
|
|
|
std::string name;
|
|
};
|
|
} |