Add TPMS initial demodulator implementation.

Right now, 2FSK, 19200 baud, +/-38400Hz deviation. No effort is made to check CRC/checksums or decode packets.
This commit is contained in:
Jared Boone 2015-11-10 15:19:56 -08:00
parent 6cdef7026d
commit 9f6c495fef
7 changed files with 227 additions and 0 deletions

View file

@ -57,6 +57,7 @@
#include "proc_wfm_audio.hpp"
#include "proc_ais.hpp"
#include "proc_wideband_spectrum.hpp"
#include "proc_tpms.hpp"
#include "clock_recovery.hpp"
#include "packet_builder.hpp"
@ -319,6 +320,10 @@ int main(void) {
baseband_processor = new WidebandSpectrum();
break;
case 5:
baseband_processor = new TPMSProcessor();
break;
default:
break;
}