mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-30 09:37:53 -04:00
Added "test app" as a draft zone for... stuff
Added second signature for M2K2 radiosonde
This commit is contained in:
parent
d5aec94eed
commit
17b238f3a8
12 changed files with 522 additions and 1 deletions
|
@ -97,6 +97,7 @@ public:
|
|||
POCSAGPacket = 50,
|
||||
ADSBFrame = 51,
|
||||
AFSKData = 52,
|
||||
TestAppPacket = 53,
|
||||
|
||||
RequestSignal = 60,
|
||||
FIFOData = 61,
|
||||
|
@ -390,6 +391,18 @@ public:
|
|||
baseband::Packet packet;
|
||||
};
|
||||
|
||||
class TestAppPacketMessage : public Message {
|
||||
public:
|
||||
constexpr TestAppPacketMessage(
|
||||
const baseband::Packet& packet
|
||||
) : Message { ID::TestAppPacket },
|
||||
packet { packet }
|
||||
{
|
||||
}
|
||||
|
||||
baseband::Packet packet;
|
||||
};
|
||||
|
||||
class UpdateSpectrumMessage : public Message {
|
||||
public:
|
||||
constexpr UpdateSpectrumMessage(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue