mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-29 17:49:14 -04:00
Add wideband spectrum processor.
This commit is contained in:
parent
23ac04ad56
commit
e751e10e45
8 changed files with 278 additions and 27 deletions
|
@ -56,6 +56,7 @@
|
|||
#include "proc_nfm_audio.hpp"
|
||||
#include "proc_wfm_audio.hpp"
|
||||
#include "proc_fsk.hpp"
|
||||
#include "proc_wideband_spectrum.hpp"
|
||||
|
||||
#include "clock_recovery.hpp"
|
||||
#include "access_code_correlator.hpp"
|
||||
|
@ -296,6 +297,10 @@ int main(void) {
|
|||
baseband_processor = new FSKProcessor(message_handlers);
|
||||
break;
|
||||
|
||||
case 4:
|
||||
baseband_processor = new WidebandSpectrum();
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue