110 lines
4.1 KiB
C
Raw Normal View History

2021-12-04 04:49:51 +01:00
#pragma once
#include "../demod.h"
2022-06-15 16:08:28 +02:00
#include <dsp/demod/ssb.h>
#include <dsp/convert/mono_to_stereo.h>
2021-12-04 04:49:51 +01:00
namespace demod {
class USB : public Demodulator {
public:
USB() {}
2022-01-29 17:27:38 +01:00
USB(std::string name, ConfigManager* config, dsp::stream<dsp::complex_t>* input, double bandwidth, EventHandler<dsp::stream<dsp::stereo_t>*> outputChangeHandler, EventHandler<float> afbwChangeHandler, double audioSR) {
init(name, config, input, bandwidth, outputChangeHandler, afbwChangeHandler, audioSR);
2021-12-04 04:49:51 +01:00
}
~USB() {
stop();
}
2022-01-29 17:27:38 +01:00
void init(std::string name, ConfigManager* config, dsp::stream<dsp::complex_t>* input, double bandwidth, EventHandler<dsp::stream<dsp::stereo_t>*> outputChangeHandler, EventHandler<float> afbwChangeHandler, double audioSR) {
2021-12-04 04:49:51 +01:00
this->name = name;
2022-06-18 00:33:08 +02:00
_config = config;
// 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"];
}
config->release();
2021-12-04 04:49:51 +01:00
// Define structure
2022-06-18 00:33:08 +02:00
demod.init(input, dsp::demod::SSB::Mode::USB, bandwidth, getIFSampleRate(), agcAttack / getIFSampleRate(), agcDecay / getIFSampleRate());
2022-06-15 16:08:28 +02:00
m2s.init(&demod.out);
2021-12-04 04:49:51 +01:00
}
void start() {
demod.start();
m2s.start();
}
void stop() {
demod.stop();
m2s.stop();
}
void showMenu() {
2022-06-18 00:33:08 +02:00
float menuWidth = ImGui::GetContentRegionAvail().x;
ImGui::LeftLabel("AGC Attack");
ImGui::SetNextItemWidth(menuWidth - ImGui::GetCursorPosX());
if (ImGui::SliderFloat(("##_radio_usb_agc_attack_" + name).c_str(), &agcAttack, 1.0f, 50.0f)) {
demod.setAGCAttack(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_usb_agc_decay_" + name).c_str(), &agcDecay, 1.0f, 50.0f)) {
demod.setAGCDecay(agcDecay / getIFSampleRate());
_config->acquire();
_config->conf[name][getName()]["agcDecay"] = agcDecay;
_config->release(true);
}
2021-12-04 04:49:51 +01:00
}
void setBandwidth(double bandwidth) {
2022-06-15 16:08:28 +02:00
demod.setBandwidth(bandwidth);
2021-12-04 04:49:51 +01:00
}
void setInput(dsp::stream<dsp::complex_t>* input) {
demod.setInput(input);
}
2021-12-04 17:46:48 +01:00
void AFSampRateChanged(double newSR) {}
2021-12-04 04:49:51 +01:00
// ============= INFO =============
const char* getName() { return "USB"; }
double getIFSampleRate() { return 24000.0; }
double getAFSampleRate() { return getIFSampleRate(); }
double getDefaultBandwidth() { return 2800.0; }
double getMinBandwidth() { return 500.0; }
double getMaxBandwidth() { return getIFSampleRate() / 2.0; }
bool getBandwidthLocked() { return false; }
double getMaxAFBandwidth() { return getIFSampleRate() / 2.0; }
double getDefaultSnapInterval() { return 100.0; }
int getVFOReference() { return ImGui::WaterfallVFO::REF_LOWER; }
bool getDeempAllowed() { return false; }
bool getPostProcEnabled() { return true; }
int getDefaultDeemphasisMode() { return DEEMP_MODE_NONE; }
2021-12-04 04:49:51 +01:00
double getAFBandwidth(double bandwidth) { return bandwidth; }
bool getDynamicAFBandwidth() { return true; }
bool getFMIFNRAllowed() { return false; }
bool getNBAllowed() { return true; }
2021-12-04 04:49:51 +01:00
dsp::stream<dsp::stereo_t>* getOutput() { return &m2s.out; }
private:
2022-06-15 16:08:28 +02:00
dsp::demod::SSB demod;
dsp::convert::MonoToStereo m2s;
2021-12-04 04:49:51 +01:00
2022-06-18 00:33:08 +02:00
ConfigManager* _config;
float agcAttack = 40.0f;
float agcDecay = 5.0f;
2021-12-04 04:49:51 +01:00
std::string name;
};
}