GNU Radio 3.6.5 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 <atsc_api.h> 00027 #include <math.h> 00028 #include <gr_single_pole_iir.h> 00029 00030 /*! 00031 * \brief Automatic Gain Control class for atsc slicer 00032 * 00033 * Given perfect data, output values will be +/- {7, 5, 3, 1} 00034 */ 00035 00036 class ATSC_API atsci_slicer_agc { 00037 00038 public: 00039 atsci_slicer_agc () : _gain(1), dc(0.0025) {}; 00040 00041 00042 float gain () { return _gain; } 00043 00044 #if 1 00045 float scale (float input){ 00046 float t = input * _gain; 00047 float output = t - REFERENCE; 00048 float error = REFERENCE - dc.filter (t); 00049 _gain += error * RATE; 00050 return output; 00051 } 00052 #else 00053 float scale(float input){ 00054 float avg = dc.filter(input); 00055 if(fabs(avg)<.1)avg=.1; 00056 _gain += _gain*.99 + .01* REFERENCE/avg; 00057 return input*_gain - REFERENCE; 00058 } 00059 #endif 00060 00061 protected: 00062 00063 static const float REFERENCE = 1.25; // pilot reference value 00064 static const float RATE = 1.0e-5; // adjustment rate 00065 float _gain; // current gain 00066 gr_single_pole_iir<float,float,float> dc; 00067 }; 00068 00069 #endif /* _ATSC_SLICER_AGC_H_ */