1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
#include "module_psk_demod.h"
#include "common/dsp/filter/firdes.h"
#include "logger.h"
#include "imgui/imgui.h"
namespace demod
{
PSKDemodModule::PSKDemodModule(std::string input_file, std::string output_file_hint, nlohmann::json parameters) : BaseDemodModule(input_file, output_file_hint, parameters)
{
// Buffers
sym_buffer = new int8_t[d_buffer_size * 4];
// Parse params
if (parameters.count("constellation") > 0)
constellation_type = parameters["constellation"].get<std::string>();
else
throw satdump_exception("Constellation type parameter must be present!");
if (parameters.count("rrc_alpha") > 0)
d_rrc_alpha = parameters["rrc_alpha"].get<float>();
else
throw satdump_exception("RRC Alpha parameter must be present!");
if (parameters.count("rrc_taps") > 0)
d_rrc_taps = parameters["rrc_taps"].get<int>();
if (parameters.count("pll_bw") > 0)
d_loop_bw = parameters["pll_bw"].get<float>();
else
throw satdump_exception("PLL BW parameter must be present!");
if (parameters.count("post_costas_dc") > 0)
d_post_costas_dc_blocking = parameters["post_costas_dc"].get<bool>();
if (parameters.count("has_carrier") > 0)
d_has_carrier = parameters["has_carrier"].get<bool>();
if (parameters.count("clock_alpha") > 0)
{
float clock_alpha = parameters["clock_alpha"].get<float>();
d_clock_gain_omega = pow(clock_alpha, 2) / 4.0;
d_clock_gain_mu = clock_alpha;
}
if (parameters.count("clock_gain_omega") > 0)
d_clock_gain_omega = parameters["clock_gain_omega"].get<float>();
if (parameters.count("clock_mu") > 0)
d_clock_mu = parameters["clock_mu"].get<float>();
if (parameters.count("clock_gain_mu") > 0)
d_clock_gain_mu = parameters["clock_gain_mu"].get<float>();
if (parameters.count("clock_omega_relative_limit") > 0)
d_clock_omega_relative_limit = parameters["clock_omega_relative_limit"].get<float>();
// BPSK Stuff
is_bpsk = constellation_type == "bpsk";
// OQPSK Stuff
is_oqpsk = constellation_type == "oqpsk";
if (is_oqpsk)
{
MIN_SPS = 1.6;
MAX_SPS = 2.4;
}
// Window Name in the UI
if (constellation_type == "bpsk")
name = "BPSK Demodulator";
else if (constellation_type == "qpsk")
name = "QPSK Demodulator";
else if (constellation_type == "oqpsk")
name = "OQPSK Demodulator";
else if (constellation_type == "8psk")
name = "8PSK Demodulator";
// Show freq
show_freq = true;
}
void PSKDemodModule::init()
{
BaseDemodModule::initb();
// RRC
rrc = std::make_shared<dsp::FIRBlock<complex_t>>(agc->output_stream, dsp::firdes::root_raised_cosine(1, final_samplerate, d_symbolrate, d_rrc_alpha, d_rrc_taps));
if (d_has_carrier)
{
if (constellation_type != "bpsk")
throw satdump_exception("For carrier mode, constellation must be BPSK!");
float d_carrier_pll_bw;
if (d_parameters.count("carrier_pll_bw") > 0)
d_carrier_pll_bw = d_parameters["carrier_pll_bw"].get<float>();
else
throw satdump_exception("Carrier PLL Bw parameter must be present!");
float d_carrier_pll_max_offset = 3.14;
if (d_parameters.count("carrier_pll_max_offset") > 0)
d_carrier_pll_max_offset = d_parameters["carrier_pll_max_offset"].get<float>();
// PLL
carrier_pll = std::make_shared<dsp::PLLCarrierTrackingBlock>(rrc->output_stream, d_carrier_pll_bw, d_carrier_pll_max_offset, -d_carrier_pll_max_offset);
// DC
carrier_dc = std::make_shared<dsp::CorrectIQBlock<complex_t>>(carrier_pll->output_stream);
}
// PLL
float costas_max_offset = d_has_carrier ? 0.2 : 1.0; // The offset in frequency should already be resolved on AM subcarriers
if (d_parameters.count("costas_max_offset") > 0)
costas_max_offset = dsp::hz_to_rad(d_parameters["costas_max_offset"].get<float>(), final_samplerate);
if (constellation_type == "bpsk")
pll = std::make_shared<dsp::CostasLoopBlock>(d_has_carrier ? carrier_dc->output_stream : rrc->output_stream, d_loop_bw, 2, costas_max_offset);
else if (constellation_type == "qpsk" || constellation_type == "oqpsk")
pll = std::make_shared<dsp::CostasLoopBlock>(rrc->output_stream, d_loop_bw, 4, costas_max_offset);
else if (constellation_type == "8psk")
pll = std::make_shared<dsp::CostasLoopBlock>(rrc->output_stream, d_loop_bw, 8, costas_max_offset);
if (d_post_costas_dc_blocking)
post_pll_dc = std::make_shared<dsp::CorrectIQBlock<complex_t>>(pll->output_stream);
if (is_oqpsk)
delay = std::make_shared<dsp::DelayOneImagBlock>(d_post_costas_dc_blocking ? post_pll_dc->output_stream : pll->output_stream);
// Clock recovery
rec = std::make_shared<dsp::MMClockRecoveryBlock<complex_t>>(is_oqpsk ? delay->output_stream : (d_post_costas_dc_blocking ? post_pll_dc->output_stream : pll->output_stream),
final_sps, d_clock_gain_omega, d_clock_mu, d_clock_gain_mu, d_clock_omega_relative_limit);
}
PSKDemodModule::~PSKDemodModule()
{
delete[] sym_buffer;
}
void PSKDemodModule::process()
{
if (input_data_type == DATA_FILE)
filesize = file_source->getFilesize();
else
filesize = 0;
if (output_data_type == DATA_FILE)
{
data_out = std::ofstream(d_output_file_hint + ".soft", std::ios::binary);
d_output_files.push_back(d_output_file_hint + ".soft");
}
logger->info("Constellation : " + constellation_type);
logger->info("Using input baseband " + d_input_file);
logger->info("Demodulating to " + d_output_file_hint + ".soft");
logger->info("Buffer size : %d", d_buffer_size);
time_t lastTime = 0;
// Start
BaseDemodModule::start();
rrc->start();
if (d_has_carrier)
{
carrier_pll->start();
carrier_dc->start();
}
pll->start();
if (d_post_costas_dc_blocking)
post_pll_dc->start();
if (is_oqpsk)
delay->start();
rec->start();
int dat_size = 0;
while (demod_should_run())
{
dat_size = rec->output_stream->read();
if (dat_size <= 0)
{
rec->output_stream->flush();
continue;
}
// Push into constellation
constellation.pushComplex(rec->output_stream->readBuf, dat_size);
// Estimate SNR
snr_estimator.update(rec->output_stream->readBuf, dat_size);
snr = snr_estimator.snr();
if (snr > peak_snr)
peak_snr = snr;
// Update freq
display_freq = dsp::rad_to_hz(pll->getFreq(), final_samplerate);
if (is_bpsk) // BPSK Only uses the Q branch... So don't output useless data
{
for (int i = 0; i < dat_size; i++)
{
sym_buffer[i] = clamp(rec->output_stream->readBuf[i].real * 50);
}
}
else // Otherwise, for all other consts, we need both
{
for (int i = 0; i < dat_size; i++)
{
sym_buffer[i * 2] = clamp(rec->output_stream->readBuf[i].real * 100);
sym_buffer[i * 2 + 1] = clamp(rec->output_stream->readBuf[i].imag * 100);
}
}
rec->output_stream->flush();
if (output_data_type == DATA_FILE)
data_out.write((char *)sym_buffer, is_bpsk ? dat_size : dat_size * 2);
else
output_fifo->write((uint8_t *)sym_buffer, is_bpsk ? dat_size : dat_size * 2);
// Update module stats
module_stats["snr"] = snr;
module_stats["peak_snr"] = peak_snr;
module_stats["freq"] = display_freq;
if (input_data_type == DATA_FILE)
progress = file_source->getPosition();
if (time(NULL) % 10 == 0 && lastTime != time(NULL))
{
lastTime = time(NULL);
logger->info("Progress " + std::to_string(round(((double)progress / (double)filesize) * 1000.0) / 10.0) + "%%, SNR : " + std::to_string(snr) + "dB," + " Peak SNR: " + std::to_string(peak_snr) + "dB");
}
}
logger->info("Demodulation finished");
if (input_data_type == DATA_FILE)
stop();
}
void PSKDemodModule::stop()
{
// Stop
BaseDemodModule::stop();
rrc->stop();
if (d_has_carrier)
{
carrier_pll->stop();
carrier_dc->stop();
}
pll->stop();
if (d_post_costas_dc_blocking)
post_pll_dc->stop();
if (is_oqpsk)
delay->stop();
rec->stop();
rec->output_stream->stopReader();
if (output_data_type == DATA_FILE)
data_out.close();
}
std::string PSKDemodModule::getID()
{
return "psk_demod";
}
std::vector<std::string> PSKDemodModule::getParameters()
{
std::vector<std::string> params = {"rrc_alpha", "rrc_taps", "pll_bw", "clock_gain_omega", "clock_mu", "clock_gain_mu", "clock_omega_relative_limit"};
params.insert(params.end(), BaseDemodModule::getParameters().begin(), BaseDemodModule::getParameters().end());
return params;
}
std::shared_ptr<ProcessingModule> PSKDemodModule::getInstance(std::string input_file, std::string output_file_hint, nlohmann::json parameters)
{
return std::make_shared<PSKDemodModule>(input_file, output_file_hint, parameters);
}
}
|