#include <GrAtscBitTimingLoop2.h>
Inheritance diagram for GrAtscBitTimingLoop2:
Public Member Functions | |
GrAtscBitTimingLoop2 () | |
virtual | ~GrAtscBitTimingLoop2 () |
virtual const char * | name () |
default name for a module (override with actual name) | |
virtual int | forecast (VrSampleRange output, VrSampleRange inputs[]) |
map output range to required input ranges | |
virtual int | work (VrSampleRange output, void *o[], VrSampleRange inputs[], void *i[]) |
Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. | |
void | set_mu (float a_mu) |
Protected Types | |
typedef float | iType |
typedef float | oType |
Protected Member Functions | |
iType | produce_sample (const iType *in, unsigned int &index) |
float | filter_error (float e) |
Protected Attributes | |
VrSampleIndex | next_input |
gr_single_pole_iir< float, float, float > | dc |
gr_mmse_fir_interpolator | intr |
float | mu |
iType | last_right |
bool | use_right_p |
This class accepts a single real input and produces a single real output
|
|
|
|
|
|
|
|
|
|
|
map output range to required input ranges
Reimplemented from VrDecimatingSigProc< float, float >. |
|
default name for a module (override with actual name)
Reimplemented from VrSigProc. |
|
Produce samples equally spaced in time that are referenced to the transmitter's sample clock, not ours. See pp 523-527 of "Digital Communication Receivers", Meyr, Moeneclaey and Fechtel, Wiley, 1998. |
|
|
|
Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. Pointers start at corresponding VrSampleIndex in the range params. output.size is a multiple of outputSize. Returns the number of outputs (<= output.size) that it was able to compute with the given input ranges. If this value is < output.size, forecast() will need to be called again. Implements VrSigProc. |
|
|
|
|
|
|
|
|
|
|
|
|