blob: 75cf72ec0aa10ab22c94b526811cd1e533cde94a (
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
|
/* -*- c++ -*- */
/*
* Copyright 2007,2012,2016 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_GR_GLFSR_SOURCE_F_IMPL_H
#define INCLUDED_GR_GLFSR_SOURCE_F_IMPL_H
#include <gnuradio/digital/glfsr.h>
#include <gnuradio/digital/glfsr_source_f.h>
namespace gr {
namespace digital {
class glfsr_source_f_impl : public glfsr_source_f
{
private:
glfsr d_glfsr;
bool d_repeat;
uint64_t d_index;
uint64_t d_length;
public:
glfsr_source_f_impl(unsigned int degree,
bool repeat = true,
uint64_t mask = 0,
uint64_t seed = 0x1);
~glfsr_source_f_impl();
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
uint64_t period() const override { return d_length; }
uint64_t mask() const override;
};
} /* namespace digital */
} /* namespace gr */
#endif /* INCLUDED_GR_GLFSR_SOURCE_F_IMPL_H */
|