diff options
author | Johnathan Corgan | 2009-08-15 12:30:45 -0700 |
---|---|---|
committer | Johnathan Corgan | 2009-09-20 09:39:27 -0700 |
commit | b6101982e270948b4a3185ee745ed76bb8661552 (patch) | |
tree | f3b1b8e79e35173d98c2b91c3035f711c16af499 /gr-noaa/swig/noaa_carrier_pll_cc.i | |
parent | 7d8dd5e122e0201d96410eec6549b903881f8b3a (diff) | |
download | gnuradio-b6101982e270948b4a3185ee745ed76bb8661552.tar.gz gnuradio-b6101982e270948b4a3185ee745ed76bb8661552.tar.bz2 gnuradio-b6101982e270948b4a3185ee745ed76bb8661552.zip |
Created new gr-noaa top-level component.
Initial work:
- Carrier recovery/mixer PLL block
- Start of POES grc pipeline, recovers Manchester symbols only
- Start of GOES grc pipeline, recovers BPSK symbols only
Diffstat (limited to 'gr-noaa/swig/noaa_carrier_pll_cc.i')
-rw-r--r-- | gr-noaa/swig/noaa_carrier_pll_cc.i | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gr-noaa/swig/noaa_carrier_pll_cc.i b/gr-noaa/swig/noaa_carrier_pll_cc.i new file mode 100644 index 000000000..4d61f393c --- /dev/null +++ b/gr-noaa/swig/noaa_carrier_pll_cc.i @@ -0,0 +1,37 @@ +/* -*- c++ -*- */ +/* + * Copyright 2009 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * GNU Radio is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * GNU Radio is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Radio; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + */ + +GR_SWIG_BLOCK_MAGIC(noaa,carrier_pll_cc) + +noaa_carrier_pll_cc_sptr +noaa_make_carrier_pll_cc(float alpha, float beta, float max_offset); + +class noaa_carrier_pll_cc : public gr_sync_block +{ +private: + noaa_carrier_pll_cc(); + +public: + void set_alpha(float alpha); + void set_beta(float beta); + void set_max_offset(float min_freq); +}; |