GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
glfsr_source_b.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2007,2012,2016 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_GR_GLFSR_SOURCE_B_H
12 #define INCLUDED_GR_GLFSR_SOURCE_B_H
13 
14 #include <gnuradio/digital/api.h>
15 #include <gnuradio/sync_block.h>
16 
17 namespace gr {
18 namespace digital {
19 
20 /*!
21  * \brief Galois LFSR pseudo-random source
22  * \ingroup waveform_generators_blk
23  */
24 class DIGITAL_API glfsr_source_b : virtual public sync_block
25 {
26 public:
27  // gr::digital::glfsr_source_b::sptr
28  typedef std::shared_ptr<glfsr_source_b> sptr;
29 
30  /*!
31  * Make a Galois LFSR pseudo-random source block.
32  *
33  * \param degree Degree of shift register must be in [1, 32]. If mask
34  * is 0, the degree determines a default mask (see
35  * digital_impl_glfsr.cc for the mapping).
36  * \param repeat Set to repeat sequence.
37  * \param mask Allows a user-defined bit mask for indexes of the shift
38  * register to feed back.
39  * \param seed Initial setting for values in shift register.
40  */
41  static sptr make(unsigned int degree,
42  bool repeat = true,
43  uint64_t mask = 0x0,
44  uint64_t seed = 0x1);
45 
46  virtual uint64_t period() const = 0;
47  virtual uint64_t mask() const = 0;
48 };
49 
50 } /* namespace digital */
51 } /* namespace gr */
52 
53 #endif /* INCLUDED_GR_GLFSR_SOURCE_B_H */
Galois LFSR pseudo-random source.
Definition: glfsr_source_b.h:25
virtual uint64_t period() const =0
static sptr make(unsigned int degree, bool repeat=true, uint64_t mask=0x0, uint64_t seed=0x1)
std::shared_ptr< glfsr_source_b > sptr
Definition: glfsr_source_b.h:28
virtual uint64_t mask() const =0
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define DIGITAL_API
Definition: gr-digital/include/gnuradio/digital/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29