diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-02 09:32:00 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-02 09:32:00 -0700 |
commit | 4bcab9c56aad7e08bd392b82cc52ae2f4f5a830c (patch) | |
tree | a4a88f09a864e97dadddbfd4231e52eee77c1f02 /host/lib/usrp/usrp1/usrp1_impl.cpp | |
parent | 0e3240ec5680fff7597d209b795dd0bc603f9919 (diff) | |
download | uhd-4bcab9c56aad7e08bd392b82cc52ae2f4f5a830c.tar.gz uhd-4bcab9c56aad7e08bd392b82cc52ae2f4f5a830c.tar.bz2 uhd-4bcab9c56aad7e08bd392b82cc52ae2f4f5a830c.zip |
usrp: renamed ref_source to clock_source (terminology)
Diffstat (limited to 'host/lib/usrp/usrp1/usrp1_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp1/usrp1_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_impl.cpp b/host/lib/usrp/usrp1/usrp1_impl.cpp index 5d3c5a00a..deb257a83 100644 --- a/host/lib/usrp/usrp1/usrp1_impl.cpp +++ b/host/lib/usrp/usrp1/usrp1_impl.cpp @@ -305,9 +305,9 @@ usrp1_impl::usrp1_impl(const device_addr_t &device_addr){ .publish(boost::bind(&soft_time_ctrl::get_time, _soft_time_ctrl)) .subscribe(boost::bind(&soft_time_ctrl::set_time, _soft_time_ctrl, _1)); - _tree->create<std::vector<std::string> >(mb_path / "ref_source/options").set(std::vector<std::string>(1, "internal")); + _tree->create<std::vector<std::string> >(mb_path / "clock_source/options").set(std::vector<std::string>(1, "internal")); _tree->create<std::vector<std::string> >(mb_path / "time_source/options").set(std::vector<std::string>(1, "none")); - _tree->create<std::string>(mb_path / "ref_source/value").set("internal"); + _tree->create<std::string>(mb_path / "clock_source/value").set("internal"); _tree->create<std::string>(mb_path / "time_source/value").set("none"); //////////////////////////////////////////////////////////////////// |