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

@ -417,6 +417,7 @@ private:
{ "WFM ", 2 },
{ "AIS ", 3 },
{ "TPMS", 5 },
{ "ERT", 6 },
{ "SPEC", 4 },
}
};
@ -475,6 +476,7 @@ private:
void on_packet_ais(const AISPacketMessage& message);
void on_packet_tpms(const TPMSPacketMessage& message);
void on_packet_ert(const ERTPacketMessage& message);
void on_sd_card_status(const sd_card::Status status);
SignalToken sd_card_status_signal_token;