00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef INCLUDED_GR_PLL_REFOUT_CC_H
00026 #define INCLUDED_GR_PLL_REFOUT_CC_H
00027
00028 #include <gr_sync_block.h>
00029
00030 class gr_pll_refout_cc;
00031 typedef boost::shared_ptr<gr_pll_refout_cc> gr_pll_refout_cc_sptr;
00032
00033 gr_pll_refout_cc_sptr gr_make_pll_refout_cc (float alpha, float beta,
00034 float max_freq, float min_freq);
00050 class gr_pll_refout_cc : public gr_sync_block
00051 {
00052 friend gr_pll_refout_cc_sptr gr_make_pll_refout_cc (float alpha, float beta,
00053 float max_freq, float min_freq);
00054
00055 float d_alpha,d_beta,d_max_freq,d_min_freq,d_phase,d_freq;
00056 gr_pll_refout_cc (float alpha, float beta, float max_freq, float min_freq);
00057
00058 int work (int noutput_items,
00059 gr_vector_const_void_star &input_items,
00060 gr_vector_void_star &output_items);
00061 private:
00062 float mod_2pi (float in);
00063 float phase_detector(gr_complex sample,float ref_phase);
00064 };
00065
00066 #endif