diff options
author | trondeau | 2007-04-24 21:09:59 +0000 |
---|---|---|
committer | trondeau | 2007-04-24 21:09:59 +0000 |
commit | 71193898cbd7a26ec7bde00ee5efdc77242a155f (patch) | |
tree | e8e1d5fc63683b201b69345a710df33f5ad71ba4 /gnuradio-core/src/lib/general | |
parent | d049678e49aefaa823ce45bd9310e2e43c93e1cf (diff) | |
download | gnuradio-71193898cbd7a26ec7bde00ee5efdc77242a155f.tar.gz gnuradio-71193898cbd7a26ec7bde00ee5efdc77242a155f.tar.bz2 gnuradio-71193898cbd7a26ec7bde00ee5efdc77242a155f.zip |
update to Doxygen info to fix warning and a bit more explicit info on frequency ranges
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5095 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core/src/lib/general')
-rw-r--r-- | gnuradio-core/src/lib/general/gr_costas_loop_cc.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnuradio-core/src/lib/general/gr_costas_loop_cc.h b/gnuradio-core/src/lib/general/gr_costas_loop_cc.h index 501d3459a..0fe798c8d 100644 --- a/gnuradio-core/src/lib/general/gr_costas_loop_cc.h +++ b/gnuradio-core/src/lib/general/gr_costas_loop_cc.h @@ -50,9 +50,8 @@ typedef boost::shared_ptr<gr_costas_loop_cc> gr_costas_loop_cc_sptr; * * \param alpha the loop gain used for phase adjustment * \param beta the loop gain for frequency adjustments - * \param max_freq the maximum frequency deviation the loop can handle - * \param min_freq the minimum frequency deviation the loop can - * handle + * \param max_freq the maximum frequency deviation (normalized frequency) the loop can handle + * \param min_freq the minimum frequency deviation (normalized frequency) the loop can handle * \param order the loop order, either 2 or 4 */ gr_costas_loop_cc_sptr @@ -87,8 +86,8 @@ class gr_costas_loop_cc : public gr_sync_block int order ) throw (std::invalid_argument); - /*! \breif the phase detector circuit for fourth-order loops - * \param a complex sample + /*! \brief the phase detector circuit for fourth-order loops + * \param sample complex sample * \return the phase error */ float phase_detector_4(gr_complex sample) const; // for QPSK |