23 #ifndef INCLUDED_ANALOG_PLL_CARRIERTRACKING_CC_H 24 #define INCLUDED_ANALOG_PLL_CARRIERTRACKING_CC_H 55 typedef boost::shared_ptr<pll_carriertracking_cc>
sptr;
63 static sptr make(
float loop_bw,
float max_freq,
float min_freq);
65 virtual bool lock_detector(
void) = 0;
66 virtual bool squelch_enable(
bool) = 0;
67 virtual float set_lock_threshold(
float) = 0;
69 virtual void set_loop_bandwidth(
float bw) = 0;
70 virtual void set_damping_factor(
float df) = 0;
71 virtual void set_alpha(
float alpha) = 0;
72 virtual void set_beta(
float beta) = 0;
73 virtual void set_frequency(
float freq) = 0;
74 virtual void set_phase(
float phase) = 0;
75 virtual void set_min_freq(
float freq) = 0;
76 virtual void set_max_freq(
float freq) = 0;
78 virtual float get_loop_bandwidth()
const = 0;
79 virtual float get_damping_factor()
const = 0;
80 virtual float get_alpha()
const = 0;
81 virtual float get_beta()
const = 0;
82 virtual float get_frequency()
const = 0;
83 virtual float get_phase()
const = 0;
84 virtual float get_min_freq()
const = 0;
85 virtual float get_max_freq()
const = 0;
boost::shared_ptr< pll_carriertracking_cc > sptr
Definition: pll_carriertracking_cc.h:55
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
Implements a PLL which locks to the input frequency and outputs the input signal mixed with that carr...
Definition: pll_carriertracking_cc.h:50
#define ANALOG_API
Definition: gr-analog/include/gnuradio/analog/api.h:30
A second-order control loop implementation class.
Definition: control_loop.h:61