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

@ -416,6 +416,7 @@ private:
{ "NFM ", 1 },
{ "WFM ", 2 },
{ "AIS ", 3 },
{ "TPMS", 5 },
{ "SPEC", 4 },
}
};
@ -473,6 +474,7 @@ private:
void on_edit_frequency();
void on_packet_ais(const AISPacketMessage& message);
void on_packet_tpms(const TPMSPacketMessage& message);
};
} /* namespace ui */