mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-29 09:39:12 -04:00
Add TPMS signal_type.
This commit is contained in:
parent
635b1fd4c3
commit
b35a8c4501
4 changed files with 9 additions and 5 deletions
|
@ -29,6 +29,7 @@
|
|||
|
||||
#include "baseband_packet.hpp"
|
||||
#include "ert_packet.hpp"
|
||||
#include "tpms_packet.hpp"
|
||||
#include "dsp_fir_taps.hpp"
|
||||
#include "dsp_iir.hpp"
|
||||
#include "fifo.hpp"
|
||||
|
@ -275,12 +276,15 @@ public:
|
|||
class TPMSPacketMessage : public Message {
|
||||
public:
|
||||
constexpr TPMSPacketMessage(
|
||||
const tpms::SignalType signal_type,
|
||||
const baseband::Packet& packet
|
||||
) : Message { ID::TPMSPacket },
|
||||
signal_type { signal_type },
|
||||
packet { packet }
|
||||
{
|
||||
}
|
||||
|
||||
tpms::SignalType signal_type;
|
||||
baseband::Packet packet;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue