#pragma once #include "../demod.h" #include #include #include #include namespace demod { class CW : public Demodulator { public: CW() {} CW(std::string name, ConfigManager* config, dsp::stream* input, double bandwidth, EventHandler*> outputChangeHandler, EventHandler afbwChangeHandler, double audioSR) { init(name, config, input, bandwidth, outputChangeHandler, afbwChangeHandler, audioSR); } ~CW() { stop(); } void init(std::string name, ConfigManager* config, dsp::stream* input, double bandwidth, EventHandler*> outputChangeHandler, EventHandler afbwChangeHandler, double audioSR) { this->name = name; this->_config = config; this->_bandwidth = bandwidth; this->afbwChangeHandler = afbwChangeHandler; // Load config config->acquire(); if (config->conf[name][getName()].contains("agcAttack")) { agcAttack = config->conf[name][getName()]["agcAttack"]; } if (config->conf[name][getName()].contains("agcDecay")) { agcDecay = config->conf[name][getName()]["agcDecay"]; } if (config->conf[name][getName()].contains("tone")) { tone = config->conf[name][getName()]["tone"]; } config->release(); // Define structure xlator.init(input, tone, getIFSampleRate()); c2r.init(&xlator.out); agc.init(&c2r.out, 1.0, agcAttack / getIFSampleRate(), agcDecay / getIFSampleRate(), 10e6, 10.0); m2s.init(&agc.out); } void start() { xlator.start(); c2r.start(); agc.start(); m2s.start(); } void stop() { xlator.stop(); c2r.stop(); agc.stop(); m2s.stop(); } void showMenu() { float menuWidth = ImGui::GetContentRegionAvail().x; ImGui::LeftLabel("AGC Attack"); ImGui::SetNextItemWidth(menuWidth - ImGui::GetCursorPosX()); if (ImGui::SliderFloat(("##_radio_cw_agc_attack_" + name).c_str(), &agcAttack, 1.0f, 100.0f)) { agc.setAttack(agcAttack / getIFSampleRate()); _config->acquire(); _config->conf[name][getName()]["agcAttack"] = agcAttack; _config->release(true); } ImGui::LeftLabel("AGC Decay"); ImGui::SetNextItemWidth(menuWidth - ImGui::GetCursorPosX()); if (ImGui::SliderFloat(("AGC Decay##_radio_cw_agc_decay_" + name).c_str(), &agcDecay, 1.0f, 20.0f)) { agc.setDecay(agcDecay / getIFSampleRate()); _config->acquire(); _config->conf[name][getName()]["agcDecay"] = agcDecay; _config->release(true); } ImGui::LeftLabel("Tone Frequency"); ImGui::FillWidth(); if (ImGui::InputInt(("Stereo##_radio_cw_tone_" + name).c_str(), &tone, 10, 100)) { tone = std::clamp(tone, 250, 1250); xlator.setOffset(tone, getIFSampleRate()); afbwChangeHandler.handler(getAFBandwidth(_bandwidth), afbwChangeHandler.ctx); _config->acquire(); _config->conf[name][getName()]["tone"] = tone; _config->release(true); } } void setBandwidth(double bandwidth) { _bandwidth = bandwidth; } void setInput(dsp::stream* input) { xlator.setInput(input); } void AFSampRateChanged(double newSR) {} // ============= INFO ============= const char* getName() { return "CW"; } double getIFSampleRate() { return 3000.0; } double getAFSampleRate() { return getIFSampleRate(); } double getDefaultBandwidth() { return 200.0; } double getMinBandwidth() { return 50.0; } double getMaxBandwidth() { return 500.0; } bool getBandwidthLocked() { return false; } double getMaxAFBandwidth() { return getIFSampleRate() / 2.0; } double getDefaultSnapInterval() { return 10.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) + (float)tone; } bool getDynamicAFBandwidth() { return true; } bool getFMIFNRAllowed() { return false; } bool getNBAllowed() { return false; } dsp::stream* getOutput() { return &m2s.out; } private: ConfigManager* _config = NULL; dsp::channel::FrequencyXlator xlator; dsp::convert::ComplexToReal c2r; dsp::loop::AGC agc; dsp::convert::MonoToStereo m2s; std::string name; float agcAttack = 50.0f; float agcDecay = 5.0f; int tone = 800; double _bandwidth; EventHandler afbwChangeHandler; }; }