diff options
Diffstat (limited to 'lib/edioutput/AFPacket.h')
| -rw-r--r-- | lib/edioutput/AFPacket.h | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/lib/edioutput/AFPacket.h b/lib/edioutput/AFPacket.h index f2c4e35..6e6ec47 100644 --- a/lib/edioutput/AFPacket.h +++ b/lib/edioutput/AFPacket.h @@ -1,5 +1,5 @@  /* -   Copyright (C) 2014 +   Copyright (C) 2021     Matthias P. Braendli, matthias.braendli@mpb.li      http://www.opendigitalradio.org @@ -28,7 +28,6 @@  #pragma once -#include "config.h"  #include <vector>  #include <cstdint>  #include "TagItems.h" @@ -49,10 +48,12 @@ class AFPacketiser          AFPacket Assemble(TagPacket tag_packet); +        void OverrideSeq(uint16_t seq); +      private: -        static const bool have_crc = true; +        static const bool m_have_crc = true; -        uint16_t seq = 0; //counter that overflows at 0xFFFF +        uint16_t m_seq = 0; //counter that overflows at 0xFFFF          bool m_verbose;  }; | 
