GNU Radio's DSD Package
dsd_block_ff_impl.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012-2016 Clayton Smith
4  *
5  * This is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3, or (at your option)
8  * any later version.
9  *
10  * This software is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this software; see the file COPYING. If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 #ifndef INCLUDED_DSD_DSD_BLOCK_FF_IMPL_H
22 #define INCLUDED_DSD_DSD_BLOCK_FF_IMPL_H
23 
24 #include <dsd/dsd_block_ff.h>
25 
26 extern "C"
27 {
28  #include <dsd.h>
29 }
30 
31 namespace gr {
32  namespace dsd {
33 
34  typedef struct
35  {
38  } dsd_params;
39 
41  {
42  private:
43  dsd_params params;
44 
45  public:
46  dsd_block_ff_impl(dsd_frame_mode frame, dsd_modulation_optimizations mod, int uvquality, bool errorbars, int verbosity);
48 
49  // Where all the action really happens
50  int work(
51  int noutput_items,
52  gr_vector_const_void_star &input_items,
53  gr_vector_void_star &output_items
54  );
55  };
56 
57  } // namespace dsd
58 } // namespace gr
59 
60 #endif /* INCLUDED_DSD_DSD_BLOCK_FF_IMPL_H */
61 
Definition: dsd_block_ff_impl.h:40
dsd_frame_mode
Definition: dsd_block_ff.h:30
Definition: dsd.h:128
dsd_opts opts
Definition: dsd_block_ff_impl.h:36
dsd_block_ff_impl(dsd_frame_mode frame, dsd_modulation_optimizations mod, int uvquality, bool errorbars, int verbosity)
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
Definition: dsd_block_ff_impl.h:34
dsd_modulation_optimizations
Definition: dsd_block_ff.h:41
Definition: dsd_block_ff.h:27
dsd_state state
Definition: dsd_block_ff_impl.h:37
Definition: dsd.h:61
<+description of block+>
Definition: dsd_block_ff.h:53