From 7a056ef2cb94fb2fa45d8ecaed9dd97e99749fde Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 22 Aug 2014 11:38:14 +0200 Subject: Add experimental EDI to configuration file --- src/dabOutput/edi/AFPacket.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/dabOutput/edi/AFPacket.h') diff --git a/src/dabOutput/edi/AFPacket.h b/src/dabOutput/edi/AFPacket.h index ac3cc28..5f62456 100644 --- a/src/dabOutput/edi/AFPacket.h +++ b/src/dabOutput/edi/AFPacket.h @@ -33,15 +33,14 @@ #include "TagItems.h" #include "TagPacket.h" -#define EDI_AFPACKET_PROTOCOLTYPE_TAGITEMS ('T') - typedef std::vector AFPacket; // ETSI TS 102 821, 6.1 AF packet structure class AFPacketiser { public: - AFPacketiser(char protocolType) : protocol_type(protocolType) {}; + AFPacketiser(bool verbose) : + m_verbose(verbose) {}; AFPacket Assemble(TagPacket tag_packet); @@ -50,7 +49,7 @@ class AFPacketiser uint16_t seq; //counter that overflows at 0xFFFF - char protocol_type; + bool m_verbose; }; #endif -- cgit v1.2.3