diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-01-23 16:04:33 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-01-23 16:14:19 -0500 |
commit | 54c0f407b7045b821e03bbe95875590c3bea666b (patch) | |
tree | e957449688ce17f76a67c0d9879c444a86948499 /gr-digital/include/digital | |
parent | 74c9034f5f645181cb449a1660deb97b918086e9 (diff) |
ctrlport: updated all blocks using controlport to use new style of setup_rpc.
QA fixed and passing.
Diffstat (limited to 'gr-digital/include/digital')
-rw-r--r-- | gr-digital/include/digital/pfb_clock_sync_ccf.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gr-digital/include/digital/pfb_clock_sync_ccf.h b/gr-digital/include/digital/pfb_clock_sync_ccf.h index 901858c180..0720a15a88 100644 --- a/gr-digital/include/digital/pfb_clock_sync_ccf.h +++ b/gr-digital/include/digital/pfb_clock_sync_ccf.h @@ -310,6 +310,21 @@ namespace gr { * \brief Returns the current clock rate */ virtual float clock_rate() const = 0; + + /*! + * \brief Returns the current error of the control loop. + */ + virtual float error() const = 0; + + /*! + * \brief Returns the current rate of the control loop. + */ + virtual float rate() const = 0; + + /*! + * \brief Returns the current phase arm of the control loop. + */ + virtual float phase() const = 0; }; } /* namespace digital */ |