acars to ext but disabled (#2288)

This commit is contained in:
Totoo 2024-10-07 15:58:37 +02:00 committed by GitHub
parent b9771b2350
commit 09c2c43be0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 353 additions and 295 deletions

View file

@ -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 {