Fixed LCR and Xylos transmitters

This commit is contained in:
furrtek
2016-05-09 20:42:20 +02:00
parent d55a420dfd
commit d40016ffda
39 changed files with 1614 additions and 151 deletions
+4
View File
@@ -33,6 +33,8 @@
#include "proc_playaudio.hpp"
#include "proc_audiotx.hpp"
#include "proc_xylos.hpp"
#include "proc_fsk_lcr.hpp"
#include "portapack_shared_memory.hpp"
@@ -120,6 +122,8 @@ BasebandProcessor* BasebandThread::create_processor(const int32_t mode) {
switch(mode) {
case 0: return new PlayAudioProcessor();
case 1: return new AudioTXProcessor();
case 2: return new XylosProcessor();
case 3: return new LCRFSKProcessor();
default: return nullptr;
}
}