mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-06 05:34:50 -04:00
acars to ext but disabled (#2288)
This commit is contained in:
parent
b9771b2350
commit
09c2c43be0
14 changed files with 353 additions and 295 deletions
|
@ -32,7 +32,6 @@
|
|||
|
||||
#include "baseband_packet.hpp"
|
||||
|
||||
#include "acars_packet.hpp"
|
||||
#include "adsb_frame.hpp"
|
||||
#include "ert_packet.hpp"
|
||||
#include "pocsag_packet.hpp"
|
||||
|
@ -379,13 +378,12 @@ class POCSAGStatsMessage : public Message {
|
|||
|
||||
class ACARSPacketMessage : public Message {
|
||||
public:
|
||||
constexpr ACARSPacketMessage(
|
||||
const baseband::Packet& packet)
|
||||
: Message{ID::ACARSPacket},
|
||||
packet{packet} {
|
||||
}
|
||||
|
||||
baseband::Packet packet;
|
||||
constexpr ACARSPacketMessage()
|
||||
: Message{ID::ACARSPacket} {}
|
||||
uint8_t msg_len = 0;
|
||||
char message[250] = {0}; // contains the whole packet
|
||||
uint8_t crc[2] = {0};
|
||||
uint8_t state = 0; // for debug
|
||||
};
|
||||
|
||||
class ADSBFrameMessage : public Message {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue