GNU Radio 3.3.0 C++ API
|
00001 /* -*- c++ -*- */ 00002 /* 00003 * Copyright 2002 Free Software Foundation, Inc. 00004 * 00005 * This file is part of GNU Radio 00006 * 00007 * GNU Radio is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License as published by 00009 * the Free Software Foundation; either version 3, or (at your option) 00010 * any later version. 00011 * 00012 * GNU Radio is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with GNU Radio; see the file COPYING. If not, write to 00019 * the Free Software Foundation, Inc., 51 Franklin Street, 00020 * Boston, MA 02110-1301, USA. 00021 */ 00022 00023 #ifndef _ATSC_SLICER_AGC_H_ 00024 #define _ATSC_SLICER_AGC_H_ 00025 00026 #include <math.h> 00027 #include <gr_single_pole_iir.h> 00028 00029 /*! 00030 * \brief Automatic Gain Control class for atsc slicer 00031 * 00032 * Given perfect data, output values will be +/- {7, 5, 3, 1} 00033 */ 00034 00035 class atsci_slicer_agc { 00036 00037 public: 00038 atsci_slicer_agc () : _gain(1), dc(0.0025) {}; 00039 00040 00041 float gain () { return _gain; } 00042 00043 #if 1 00044 float scale (float input){ 00045 float t = input * _gain; 00046 float output = t - REFERENCE; 00047 float error = REFERENCE - dc.filter (t); 00048 _gain += error * RATE; 00049 return output; 00050 } 00051 #else 00052 float scale(float input){ 00053 float avg = dc.filter(input); 00054 if(fabs(avg)<.1)avg=.1; 00055 _gain += _gain*.99 + .01* REFERENCE/avg; 00056 return input*_gain - REFERENCE; 00057 } 00058 #endif 00059 00060 protected: 00061 00062 static const float REFERENCE = 1.25; // pilot reference value 00063 static const float RATE = 1.0e-5; // adjustment rate 00064 float _gain; // current gain 00065 gr_single_pole_iir<float,float,float> dc; 00066 }; 00067 00068 #endif /* _ATSC_SLICER_AGC_H_ */