blob: 89c7f7edd37208f9dbd53a5e987ebafa886da393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* -*- c++ -*- */
/*
* Copyright 2015-2016 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_DIGITAL_PACKET_PARSE_B_H
#define INCLUDED_DIGITAL_PACKET_PARSE_B_H
#include <gnuradio/digital/api.h>
#include <gnuradio/digital/header_format_base.h>
#include <gnuradio/sync_block.h>
namespace gr {
namespace digital {
/*!
* \brief Block that synchronizes to a header based on a header
* format object class. Designed to accept hard bits and produce
* PDUs with packed bytes (pmt::u8vector).
*
* \ingroup packet_operators_blk
*
* \details
*
* A packet synchronizer block. This block takes in hard bits
* (unpacked bytes; 1's and 0's as the LSB) and finds the access
* code as a sync word to find the start of a frame.
*
* The block uses a format object derived from a
* header_format_base class.
*
* Once the frame is detected (usually through the use of an
* access code), the block uses the format object's parser
* function to decode the remaining header. Generally, as in the
* default header case, the header will contain the length of the
* frame's payload. That and anything else in the header will
* generally go into the PDU's meta-data dictionary.
*
* The block will output a PDU that contains frame's header info
* in the meta-data portion of the PDU and the payload itself. The
* payload is packed hard bits as taken from the input stream.
*
* \sa packet_sync_ff for a soft decision version.
*/
class DIGITAL_API protocol_parser_b : virtual public sync_block
{
public:
typedef boost::shared_ptr<protocol_parser_b> sptr;
/*!
* Make a packet header block using a given \p format.
*
* \param format The format object to use when reading the
* header.
*/
static sptr make(const header_format_base::sptr &format);
};
} // namespace digital
} // namespace gr
#endif /* INCLUDED_DIGITAL_PROTOCOL_PARSER_B_H */
|