Add basic ERT (OOK) utility meter reception.

Extracted the Manchester formatting function for use in ERT, now also returns an indication of bits in error.
This commit is contained in:
Jared Boone 2015-12-01 11:24:48 -08:00
parent 0c36a74351
commit 82ff45860e
8 changed files with 329 additions and 8 deletions

View file

@ -58,6 +58,7 @@
#include "proc_ais.hpp"
#include "proc_wideband_spectrum.hpp"
#include "proc_tpms.hpp"
#include "proc_ert.hpp"
#include "clock_recovery.hpp"
#include "packet_builder.hpp"
@ -370,6 +371,10 @@ int main(void) {
baseband_thread.baseband_processor = new TPMSProcessor();
break;
case 6:
baseband_thread.baseband_processor = new ERTProcessor();
break;
default:
break;
}