#pragma once #include "../demod.h" #include #include namespace demod { class AM : public Demodulator { public: AM() {} AM(std::string name, ConfigManager* config, dsp::stream* input, double bandwidth, EventHandler*> outputChangeHandler, EventHandler afbwChangeHandler, double audioSR) { init(name, config, input, bandwidth, outputChangeHandler, afbwChangeHandler, audioSR); } ~AM() { stop(); } void init(std::string name, ConfigManager* config, dsp::stream* input, double bandwidth, EventHandler*> outputChangeHandler, EventHandler afbwChangeHandler, double audioSR) { this->name = name; // Define structure demod.init(input, dsp::demod::AM::AGCMode::CARRIER, 24.0 / getIFSampleRate()); m2s.init(&demod.out); } void start() { demod.start(); m2s.start(); } void stop() { demod.stop(); m2s.stop(); } void showMenu() { // TODO: Adjust AGC settings } void setBandwidth(double bandwidth) {} void setInput(dsp::stream* input) { demod.setInput(input); } void AFSampRateChanged(double newSR) {} // ============= INFO ============= const char* getName() { return "AM"; } double getIFSampleRate() { return 15000.0; } double getAFSampleRate() { return getIFSampleRate(); } double getDefaultBandwidth() { return 10000.0; } double getMinBandwidth() { return 1000.0; } double getMaxBandwidth() { return getIFSampleRate(); } bool getBandwidthLocked() { return false; } double getMaxAFBandwidth() { return getIFSampleRate() / 2.0; } double getDefaultSnapInterval() { return 1000.0; } int getVFOReference() { return ImGui::WaterfallVFO::REF_CENTER; } bool getDeempAllowed() { return false; } bool getPostProcEnabled() { return true; } int getDefaultDeemphasisMode() { return DEEMP_MODE_NONE; } double getAFBandwidth(double bandwidth) { return bandwidth / 2.0; } bool getDynamicAFBandwidth() { return true; } bool getFMIFNRAllowed() { return false; } bool getNBAllowed() { return false; } dsp::stream* getOutput() { return &m2s.out; } private: dsp::demod::AM demod; dsp::convert::MonoToStereo m2s; std::string name; }; }