/* -*- c++ -*- */ /* Copyright 2012 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio 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 3, or (at your option) * any later version. * * GNU Radio 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 GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #ifndef INCLUDED_CDMA_PACKET_HEADER2_H #define INCLUDED_CDMA_PACKET_HEADER2_H #include #include //#include #include //#include //#include namespace gr { namespace cdma { /*! * \brief Default header formatter for digital packet transmission. * \ingroup packet_operators_blk * * \details * For bursty/packetized digital transmission, packets are usually prepended * with a packet header, containing the number of bytes etc. * This class is not a block, but a tool to create these packet header. * * This is a default packet header (see header_formatter()) for a description * on the header format). To create other header, derive packet header creator * classes from this function. * * gr::digital::packet_headergenerator_bb uses header generators derived from * this class to create packet headers from data streams. */ class CDMA_API packet_header2 : virtual public gr::digital::packet_header_default { public: typedef boost::shared_ptr sptr; packet_header2( long header_len, const std::string &len_tag_key="packet_len", const std::string &num_tag_key="packet_num", int bits_per_byte=1, int mod_type=1, const std::string &mod_tag_key="mod_type_tag", int code_type=1, const std::string &code_tag_key="code_type_tag"); ~packet_header2(); void set_mod_type(int mod_type){d_mod_type = mod_type; }; void set_code_type(int code_type){d_code_type = code_type; }; //pmt::pmt_t len_tag_key() { return d_len_tag_key; }; /*! * \brief Encodes the header information in the given tags into bits and places them into \p out * * Uses the following header format: * Bits 0-11: The packet length (what was stored in the tag with key \p len_tag_key) * Bits 12-13: The modulation type * Bits 14-15: The coding type * Bits 16-27: The header number (counts up everytime this function is called) * Bit 28-35: 8-Bit CRC * All other bits: Are set to zero * * If the header length is smaller than 36, bits are simply left out. For this * reason, they always start with the LSB. * * However, it is recommended to stay above 36 Bits, in order to have a working * CRC. */ bool header_formatter( long packet_len, unsigned char *out, const std::vector &tags=std::vector() ); /*! * \brief Inverse function to header_formatter(). * * Reads the bit stream in \p header and writes a corresponding tag into \p tags. */ bool header_parser( const unsigned char *header, std::vector &tags); static sptr make( long header_len, const std::string &len_tag_key="packet_len", const std::string &num_tag_key="packet_num", int bits_per_byte=1, int mod_type=1, const std::string &mod_tag_key="mod_type_tag", int code_type=1, const std::string &code_tag_key="code_type_tag"); protected: pmt::pmt_t d_mod_tag_key; pmt::pmt_t d_code_tag_key; int d_mod_type; int d_code_type; }; } // namespace cdma } // namespace gr #endif /* INCLUDED_CDMA_PACKET_HEADER2_H */