Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_pwr_squelch_cc.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004,2006 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 2, 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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_pwr_squelch_cc.h>
28
29 gr_pwr_squelch_cc_sptr
30 gr_make_pwr_squelch_cc(double threshold, double alpha, int ramp, bool gate)
31 {
32   return gr_pwr_squelch_cc_sptr(new gr_pwr_squelch_cc(threshold, alpha, ramp, gate));
33 }
34
35 gr_pwr_squelch_cc::gr_pwr_squelch_cc(double threshold, double alpha, int ramp, bool gate) : 
36         gr_squelch_base_cc("pwr_squelch_cc", ramp, gate),
37         d_iir(alpha)
38 {
39   set_threshold(threshold);
40 }
41
42 std::vector<float> gr_pwr_squelch_cc::squelch_range() const
43 {
44   std::vector<float> r(3);
45   r[0] = -50.0;                         // min  FIXME
46   r[1] = +50.0;                         // max  FIXME
47   r[2] = (r[1] - r[0]) / 100;           // step size
48
49   return r;
50 }
51
52 void gr_pwr_squelch_cc::update_state(const gr_complex &in)
53 {
54   d_pwr = d_iir.filter(in.real()*in.real()+in.imag()*in.imag());
55 }