diff options
author | michael-west <michael.west@ettus.com> | 2014-03-15 08:42:05 -0700 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2014-03-15 08:42:05 -0700 |
commit | 9126069560de0a462f58596055dad15b35693dce (patch) | |
tree | 09b7e56693961fbc1a0ed725acd03c9f3c62c35b /host/lib/usrp/x300/x300_clock_ctrl.hpp | |
parent | fe90695e96630864e376e3becee30cb1f01083b8 (diff) | |
download | uhd-9126069560de0a462f58596055dad15b35693dce.tar.gz uhd-9126069560de0a462f58596055dad15b35693dce.tar.bz2 uhd-9126069560de0a462f58596055dad15b35693dce.zip |
Addressed comments from review.
- Fixed typos.
- Renamed reset() to reset_clocks().
- Created wait_for_ref_locked() function.
Diffstat (limited to 'host/lib/usrp/x300/x300_clock_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/x300/x300_clock_ctrl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/x300/x300_clock_ctrl.hpp b/host/lib/usrp/x300/x300_clock_ctrl.hpp index 4e7d6fc8e..e9904d25c 100644 --- a/host/lib/usrp/x300/x300_clock_ctrl.hpp +++ b/host/lib/usrp/x300/x300_clock_ctrl.hpp @@ -79,11 +79,11 @@ public: */ virtual void set_ref_out(const bool) = 0; - /*! Reset the clock control. + /*! Reset the clocks. * Should be called if the reference clock changes * to reduce the time required to achieve a lock. */ - virtual void reset(void) = 0; + virtual void reset_clocks(void) = 0; }; #endif /* INCLUDED_X300_CLOCK_CTRL_HPP */ |