blob: a89fe40ef1e672f60839bf2acd4568ff940bf594 (
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
|
/* -*- c++ -*- */
/*
* Copyright 2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DIGITAL_HDLC_DEFRAMER_BP_IMPL_H
#define INCLUDED_DIGITAL_HDLC_DEFRAMER_BP_IMPL_H
#include <gnuradio/digital/hdlc_deframer_bp.h>
namespace gr {
namespace digital {
class hdlc_deframer_bp_impl : public hdlc_deframer_bp
{
private:
size_t d_length_min;
size_t d_length_max;
size_t d_ones;
size_t d_bytectr;
size_t d_bitctr;
unsigned char* d_pktbuf;
const pmt::pmt_t d_port;
unsigned int crc_ccitt(unsigned char* data, size_t len);
public:
hdlc_deframer_bp_impl(int length_min, int length_max);
~hdlc_deframer_bp_impl();
// Where all the action really happens
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} // namespace digital
} // namespace gr
#endif /* INCLUDED_DIGITAL_HDLC_DEFRAMER_BP_IMPL_H */
|