root / gnuradio-core / src / lib / general / gr_glfsr_source_f.cc @ 5155713e
History | View | Annotate | Download (2.2 kB)
| 1 | /* -*- c++ -*- */
|
|---|---|
| 2 | /*
|
| 3 | * Copyright 2007,2010 Free Software Foundation, Inc. |
| 4 | * |
| 5 | * This file is part of GNU Radio |
| 6 | * |
| 7 | * GNU Radio is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 3, or (at your option) |
| 10 | * any later version. |
| 11 | * |
| 12 | * GNU Radio is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with GNU Radio; see the file COPYING. If not, write to |
| 19 | * the Free Software Foundation, Inc., 51 Franklin Street, |
| 20 | * Boston, MA 02110-1301, USA. |
| 21 | */ |
| 22 | |
| 23 | |
| 24 | #ifdef HAVE_CONFIG_H
|
| 25 | #include <config.h> |
| 26 | #endif
|
| 27 | |
| 28 | #include <gr_glfsr_source_f.h> |
| 29 | #include <gri_glfsr.h> |
| 30 | #include <gr_io_signature.h> |
| 31 | #include <stdexcept> |
| 32 | |
| 33 | gr_glfsr_source_f_sptr |
| 34 | gr_make_glfsr_source_f(int degree, bool repeat, int mask, int seed) |
| 35 | {
|
| 36 | return gnuradio::get_initial_sptr(new gr_glfsr_source_f(degree, repeat, mask, seed)); |
| 37 | } |
| 38 | |
| 39 | gr_glfsr_source_f::gr_glfsr_source_f(int degree, bool repeat, int mask, int seed) |
| 40 | : gr_sync_block ("glfsr_source_f",
|
| 41 | gr_make_io_signature (0, 0, 0), |
| 42 | gr_make_io_signature (1, 1, sizeof(float))), |
| 43 | d_repeat(repeat), |
| 44 | d_index(0)
|
| 45 | {
|
| 46 | if (degree < 1 || degree > 32) |
| 47 | throw std::runtime_error("gr_glfsr_source_f: degree must be between 1 and 32 inclusive"); |
| 48 | d_length = (unsigned int)((1ULL << degree)-1); |
| 49 | |
| 50 | if (mask == 0) |
| 51 | mask = gri_glfsr::glfsr_mask(degree); |
| 52 | d_glfsr = new gri_glfsr(mask, seed);
|
| 53 | } |
| 54 | |
| 55 | gr_glfsr_source_f::~gr_glfsr_source_f() |
| 56 | {
|
| 57 | delete d_glfsr;
|
| 58 | } |
| 59 | |
| 60 | int
|
| 61 | gr_glfsr_source_f::work(int noutput_items,
|
| 62 | gr_vector_const_void_star &input_items, |
| 63 | gr_vector_void_star &output_items) |
| 64 | {
|
| 65 | float *out = (float *) output_items[0]; |
| 66 | if ((d_index > d_length) && d_repeat == false) |
| 67 | return -1; /* once through the sequence */ |
| 68 | |
| 69 | int i;
|
| 70 | for (i = 0; i < noutput_items; i++) { |
| 71 | out[i] = (float)d_glfsr->next_bit()*2.0-1.0; |
| 72 | d_index++; |
| 73 | if (d_index > d_length && d_repeat == false) |
| 74 | break;
|
| 75 | } |
| 76 | |
| 77 | return i;
|
| 78 | } |
| 79 | |
| 80 | int
|
| 81 | gr_glfsr_source_f::mask() const
|
| 82 | {
|
| 83 | return d_glfsr->mask();
|
| 84 | } |