Add SSB demodulator, switch between AM and SSB.

This commit is contained in:
Jared Boone
2016-01-30 17:30:03 -08:00
parent 1915ff980f
commit ad4d7a2e8a
2 changed files with 9 additions and 3 deletions

View File

@@ -61,7 +61,8 @@ private:
uint32_t channel_filter_pass_f = 0;
uint32_t channel_filter_stop_f = 0;
dsp::demodulate::AM demod;
dsp::demodulate::AM demod_am;
dsp::demodulate::SSB demod_ssb;
AudioOutput audio_output;