/** * Digital Voice Modem - Host Software * GPLv2 Open Source. Use is subject to license terms. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * @package DVM / Host Software * */ /* * Copyright (C) 2022 by Bryan Biedenkapp N2PLL * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #if !defined(__P25_DFSI__LC_H__) #define __P25_DFSI__LC_H__ #include "Defines.h" #include "p25/data/LowSpeedData.h" #include "p25/lc/LC.h" #include "p25/lc/TSBK.h" #include namespace p25 { namespace dfsi { // --------------------------------------------------------------------------- // Class Declaration // Represents link control data for DFSI VHDR, LDU1 and 2 packets. // --------------------------------------------------------------------------- class HOST_SW_API LC { public: /// Initializes a new instance of the LC class. LC(); /// Initializes a copy instance of the LC class. LC(const LC& data); /// Initializes a new instance of the LC class. LC(const p25::lc::LC& control, const p25::data::LowSpeedData& lsd); /// Finalizes a instance of the LC class. ~LC(); /// Equals operator. LC& operator=(const LC& data); /// Decode a NID start/stop. bool decodeNID(const uint8_t* data); /// Encode a NID start/stop. void encodeNID(uint8_t* data); /// Decode a voice header 1. bool decodeVHDR1(const uint8_t* data); /// Encode a voice header 1. void encodeVHDR1(uint8_t* data); /// Decode a voice header 2. bool decodeVHDR2(const uint8_t* data); /// Encode a voice header 2. void encodeVHDR2(uint8_t* data); /// Decode a logical link data unit 1. bool decodeLDU1(const uint8_t* data, uint8_t* imbe); /// Encode a logical link data unit 1. void encodeLDU1(uint8_t* data, const uint8_t* imbe); /// Decode a logical link data unit 2. bool decodeLDU2(const uint8_t* data, uint8_t* imbe); /// Encode a logical link data unit 2. void encodeLDU2(uint8_t* data, const uint8_t* imbe); /// Decode a TSBK. bool decodeTSBK(const uint8_t* data); /// Encode a TSBK. void encodeTSBK(uint8_t* data); public: /** Common Data */ /// Frame Type. __PROPERTY(uint8_t, frameType, FrameType); /// RT Mode Flag. __PROPERTY(uint8_t, rtModeFlag, RTMode); /// Start/Stop Flag. __PROPERTY(uint8_t, startStopFlag, StartStop); /// Type Flag. __PROPERTY(uint8_t, typeFlag, Type); /// ICW Flag. __PROPERTY(uint8_t, icwFlag, ICW); /// RSSI. __PROPERTY(uint8_t, rssi, RSSI); /// Source. __PROPERTY(uint8_t, source, Source); /// Link control data. __PROPERTY_PLAIN(p25::lc::LC, control, control); /// TSBK. __PROPERTY_PLAIN(p25::lc::TSBK, tsbk, tsbk); /// Low speed data. __PROPERTY_PLAIN(p25::data::LowSpeedData, lsd, lsd); private: /** Encryption data */ uint8_t* m_mi; /// Internal helper to copy the class. void copy(const LC& data); /// Decode start record data. bool decodeStart(const uint8_t* data); /// Encode start record data. void encodeStart(uint8_t* data); }; } // namespace dfsi } // namespace p25 #endif // __P25_DFSI__LC_H__