Added more SSTV modes

A bit more work done on Replay (still not enabled)
This commit is contained in:
furrtek 2017-03-23 21:28:21 +00:00
parent 6a0bcb9cca
commit 685e4c6e4b
19 changed files with 288 additions and 172 deletions

View file

@ -52,13 +52,13 @@ private:
BasebandThread baseband_thread { baseband_fs, this, NORMALPRIO + 20, baseband::Direction::Transmit };
//RSSIThread rssi_thread { NORMALPRIO + 10 };
std::array<complex16_t, 512> dst;
const buffer_c16_t dst_buffer {
dst.data(),
dst.size()
std::array<complex16_t, 2048> iq { };
const buffer_c16_t iq_buffer {
iq.data(),
iq.size()
};
std::unique_ptr<StreamOutput> stream;
std::unique_ptr<StreamOutput> stream { };
/*SpectrumCollector channel_spectrum;
size_t spectrum_interval_samples = 0;