23 #ifndef INCLUDED_ANALOG_PLL_FREQDET_CF_H 24 #define INCLUDED_ANALOG_PLL_FREQDET_CF_H 54 typedef boost::shared_ptr<pll_freqdet_cf>
sptr;
62 static sptr make(
float loop_bw,
float max_freq,
float min_freq);
64 virtual void set_loop_bandwidth(
float bw) = 0;
65 virtual void set_damping_factor(
float df) = 0;
66 virtual void set_alpha(
float alpha) = 0;
67 virtual void set_beta(
float beta) = 0;
68 virtual void set_frequency(
float freq) = 0;
69 virtual void set_phase(
float phase) = 0;
70 virtual void set_min_freq(
float freq) = 0;
71 virtual void set_max_freq(
float freq) = 0;
73 virtual float get_loop_bandwidth()
const = 0;
74 virtual float get_damping_factor()
const = 0;
75 virtual float get_alpha()
const = 0;
76 virtual float get_beta()
const = 0;
77 virtual float get_frequency()
const = 0;
78 virtual float get_phase()
const = 0;
79 virtual float get_min_freq()
const = 0;
80 virtual float get_max_freq()
const = 0;
Implements a PLL which locks to the input frequency and outputs an estimate of that frequency...
Definition: pll_freqdet_cf.h:49
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
#define ANALOG_API
Definition: gr-analog/include/gnuradio/analog/api.h:30
A second-order control loop implementation class.
Definition: control_loop.h:61
boost::shared_ptr< pll_freqdet_cf > sptr
Definition: pll_freqdet_cf.h:54