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 | |
| 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')
| -rw-r--r-- | host/lib/usrp/b100/b100_impl.cpp | 12 | ||||
| -rw-r--r-- | host/lib/usrp/b100/b100_impl.hpp | 2 | ||||
| -rw-r--r-- | host/lib/usrp/e100/e100_impl.cpp | 12 | ||||
| -rw-r--r-- | host/lib/usrp/e100/e100_impl.hpp | 2 | ||||
| -rw-r--r-- | host/lib/usrp/multi_usrp.cpp | 14 | ||||
| -rw-r--r-- | host/lib/usrp/usrp1/usrp1_impl.cpp | 4 | ||||
| -rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.cpp | 14 | ||||
| -rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.hpp | 2 | 
8 files changed, 31 insertions, 31 deletions
| diff --git a/host/lib/usrp/b100/b100_impl.cpp b/host/lib/usrp/b100/b100_impl.cpp index 93e26f047..5410f57e5 100644 --- a/host/lib/usrp/b100/b100_impl.cpp +++ b/host/lib/usrp/b100/b100_impl.cpp @@ -328,10 +328,10 @@ b100_impl::b100_impl(const device_addr_t &device_addr){      _tree->create<std::vector<std::string> >(mb_path / "time_source/options")          .publish(boost::bind(&time64_core_200::get_time_sources, _time64));      //setup reference source props -    _tree->create<std::string>(mb_path / "ref_source/value") -        .subscribe(boost::bind(&b100_impl::update_ref_source, this, _1)); -    static const std::vector<std::string> ref_sources = boost::assign::list_of("internal")("external")("auto"); -    _tree->create<std::vector<std::string> >(mb_path / "ref_source/options").set(ref_sources); +    _tree->create<std::string>(mb_path / "clock_source/value") +        .subscribe(boost::bind(&b100_impl::update_clock_source, this, _1)); +    static const std::vector<std::string> clock_sources = boost::assign::list_of("internal")("external")("auto"); +    _tree->create<std::vector<std::string> >(mb_path / "clock_source/options").set(clock_sources);      ////////////////////////////////////////////////////////////////////      // create dboard control objects @@ -394,7 +394,7 @@ b100_impl::b100_impl(const device_addr_t &device_addr){      _tree->access<subdev_spec_t>(mb_path / "rx_subdev_spec").set(subdev_spec_t("A:"+_dboard_manager->get_rx_subdev_names()[0]));      _tree->access<subdev_spec_t>(mb_path / "tx_subdev_spec").set(subdev_spec_t("A:"+_dboard_manager->get_tx_subdev_names()[0])); -    _tree->access<std::string>(mb_path / "ref_source/value").set("internal"); +    _tree->access<std::string>(mb_path / "clock_source/value").set("internal");      _tree->access<std::string>(mb_path / "time_source/value").set("none");  } @@ -444,7 +444,7 @@ void b100_impl::set_db_eeprom(const std::string &type, const uhd::usrp::dboard_e      if (type == "gdb") db_eeprom.store(*_fpga_i2c_ctrl, I2C_ADDR_TX_A ^ 5);  } -void b100_impl::update_ref_source(const std::string &source){ +void b100_impl::update_clock_source(const std::string &source){      if      (source == "auto")     _clock_ctrl->use_auto_ref();      else if (source == "internal") _clock_ctrl->use_internal_ref();      else if (source == "external") _clock_ctrl->use_external_ref(); diff --git a/host/lib/usrp/b100/b100_impl.hpp b/host/lib/usrp/b100/b100_impl.hpp index 904c846e0..115fba985 100644 --- a/host/lib/usrp/b100/b100_impl.hpp +++ b/host/lib/usrp/b100/b100_impl.hpp @@ -123,7 +123,7 @@ private:      void update_tx_samp_rate(const double rate);      void update_rx_subdev_spec(const uhd::usrp::subdev_spec_t &);      void update_tx_subdev_spec(const uhd::usrp::subdev_spec_t &); -    void update_ref_source(const std::string &); +    void update_clock_source(const std::string &);      void reset_gpif(const boost::uint16_t);      void enable_gpif(const bool);      void clear_fpga_fifo(void); diff --git a/host/lib/usrp/e100/e100_impl.cpp b/host/lib/usrp/e100/e100_impl.cpp index 518443435..8086eb985 100644 --- a/host/lib/usrp/e100/e100_impl.cpp +++ b/host/lib/usrp/e100/e100_impl.cpp @@ -287,10 +287,10 @@ e100_impl::e100_impl(const uhd::device_addr_t &device_addr){      _tree->create<std::vector<std::string> >(mb_path / "time_source/options")          .publish(boost::bind(&time64_core_200::get_time_sources, _time64));      //setup reference source props -    _tree->create<std::string>(mb_path / "ref_source/value") -        .subscribe(boost::bind(&e100_impl::update_ref_source, this, _1)); -    static const std::vector<std::string> ref_sources = boost::assign::list_of("internal")("external")("auto"); -    _tree->create<std::vector<std::string> >(mb_path / "ref_source/options").set(ref_sources); +    _tree->create<std::string>(mb_path / "clock_source/value") +        .subscribe(boost::bind(&e100_impl::update_clock_source, this, _1)); +    static const std::vector<std::string> clock_sources = boost::assign::list_of("internal")("external")("auto"); +    _tree->create<std::vector<std::string> >(mb_path / "clock_source/options").set(clock_sources);      ////////////////////////////////////////////////////////////////////      // create dboard control objects @@ -353,7 +353,7 @@ e100_impl::e100_impl(const uhd::device_addr_t &device_addr){      _tree->access<subdev_spec_t>(mb_path / "rx_subdev_spec").set(subdev_spec_t("A:"+_dboard_manager->get_rx_subdev_names()[0]));      _tree->access<subdev_spec_t>(mb_path / "tx_subdev_spec").set(subdev_spec_t("A:"+_dboard_manager->get_tx_subdev_names()[0])); -    _tree->access<std::string>(mb_path / "ref_source/value").set("internal"); +    _tree->access<std::string>(mb_path / "clock_source/value").set("internal");      _tree->access<std::string>(mb_path / "time_source/value").set("none");  } @@ -380,7 +380,7 @@ void e100_impl::set_db_eeprom(const std::string &type, const uhd::usrp::dboard_e      if (type == "gdb") db_eeprom.store(*_fpga_i2c_ctrl, I2C_ADDR_TX_DB ^ 5);  } -void e100_impl::update_ref_source(const std::string &source){ +void e100_impl::update_clock_source(const std::string &source){      if      (source == "auto")     _clock_ctrl->use_auto_ref();      else if (source == "internal") _clock_ctrl->use_internal_ref();      else if (source == "external") _clock_ctrl->use_external_ref(); diff --git a/host/lib/usrp/e100/e100_impl.hpp b/host/lib/usrp/e100/e100_impl.hpp index f90e13bf7..a7051d497 100644 --- a/host/lib/usrp/e100/e100_impl.hpp +++ b/host/lib/usrp/e100/e100_impl.hpp @@ -121,7 +121,7 @@ private:      void update_tx_samp_rate(const double rate);      void update_rx_subdev_spec(const uhd::usrp::subdev_spec_t &);      void update_tx_subdev_spec(const uhd::usrp::subdev_spec_t &); -    void update_ref_source(const std::string &); +    void update_clock_source(const std::string &);  }; diff --git a/host/lib/usrp/multi_usrp.cpp b/host/lib/usrp/multi_usrp.cpp index 06c965e2c..2f416d93a 100644 --- a/host/lib/usrp/multi_usrp.cpp +++ b/host/lib/usrp/multi_usrp.cpp @@ -347,15 +347,15 @@ public:      void set_clock_config(const clock_config_t &clock_config, size_t mboard){          if (mboard != ALL_MBOARDS){              //set the reference source... -            std::string ref_source; +            std::string clock_source;              switch(clock_config.ref_source){ -            case clock_config_t::REF_INT: ref_source = "internal"; break; -            case clock_config_t::PPS_SMA: ref_source = "external"; break; -            case clock_config_t::PPS_MIMO: ref_source = "mimo"; break; -            default: ref_source = "unknown"; +            case clock_config_t::REF_INT: clock_source = "internal"; break; +            case clock_config_t::PPS_SMA: clock_source = "external"; break; +            case clock_config_t::PPS_MIMO: clock_source = "mimo"; break; +            default: clock_source = "unknown";              } -            if (ref_source == "external" and clock_config.pps_polarity == clock_config_t::PPS_NEG) ref_source = "_external_"; -            _tree->access<std::string>(mb_root(mboard) / "ref_source" / "value").set(ref_source); +            if (clock_source == "external" and clock_config.pps_polarity == clock_config_t::PPS_NEG) clock_source = "_external_"; +            _tree->access<std::string>(mb_root(mboard) / "clock_source" / "value").set(clock_source);              //set the time source              std::string time_source; 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");      //////////////////////////////////////////////////////////////////// diff --git a/host/lib/usrp/usrp2/usrp2_impl.cpp b/host/lib/usrp/usrp2/usrp2_impl.cpp index 129470b59..079506c70 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.cpp +++ b/host/lib/usrp/usrp2/usrp2_impl.cpp @@ -493,10 +493,10 @@ usrp2_impl::usrp2_impl(const device_addr_t &_device_addr){          _tree->create<std::vector<std::string> >(mb_path / "time_source/options")              .publish(boost::bind(&time64_core_200::get_time_sources, _mbc[mb].time64));          //setup reference source props -        _tree->create<std::string>(mb_path / "ref_source/value") -            .subscribe(boost::bind(&usrp2_impl::update_ref_source, this, mb, _1)); -        static const std::vector<std::string> ref_sources = boost::assign::list_of("internal")("external")("mimo"); -        _tree->create<std::vector<std::string> >(mb_path / "ref_source/options").set(ref_sources); +        _tree->create<std::string>(mb_path / "clock_source/value") +            .subscribe(boost::bind(&usrp2_impl::update_clock_source, this, mb, _1)); +        static const std::vector<std::string> clock_sources = boost::assign::list_of("internal")("external")("mimo"); +        _tree->create<std::vector<std::string> >(mb_path / "clock_source/options").set(clock_sources);          ////////////////////////////////////////////////////////////////          // create dboard control objects @@ -559,13 +559,13 @@ usrp2_impl::usrp2_impl(const device_addr_t &_device_addr){          _tree->access<subdev_spec_t>(root / "rx_subdev_spec").set(subdev_spec_t("A:"+_mbc[mb].dboard_manager->get_rx_subdev_names()[0]));          _tree->access<subdev_spec_t>(root / "tx_subdev_spec").set(subdev_spec_t("A:"+_mbc[mb].dboard_manager->get_tx_subdev_names()[0])); -        _tree->access<std::string>(root / "ref_source/value").set("internal"); +        _tree->access<std::string>(root / "clock_source/value").set("internal");          _tree->access<std::string>(root / "time_source/value").set("none");          //GPS installed: use external ref, time, and init time spec          if (_mbc[mb].gps.get() != NULL){              _tree->access<std::string>(root / "time_source/value").set("external"); -            _tree->access<std::string>(root / "ref_source/value").set("external"); +            _tree->access<std::string>(root / "clock_source/value").set("external");              _mbc[mb].time64->set_time_next_pps(time_spec_t(time_t(_mbc[mb].gps->get_sensor("gps_time").to_int()+1)));          }      } @@ -624,7 +624,7 @@ meta_range_t usrp2_impl::get_tx_dsp_freq_range(const std::string &mb){      return meta_range_t(dsp_range.start() - tick_rate*2, dsp_range.stop() + tick_rate*2, dsp_range.step());  } -void usrp2_impl::update_ref_source(const std::string &mb, const std::string &source){ +void usrp2_impl::update_clock_source(const std::string &mb, const std::string &source){      //clock source ref 10mhz      switch(_mbc[mb].iface->get_rev()){      case usrp2_iface::USRP_N200: diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp index ad203079b..e0ff4b241 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.hpp +++ b/host/lib/usrp/usrp2/usrp2_impl.hpp @@ -128,7 +128,7 @@ private:      void update_tx_subdev_spec(const std::string &, const uhd::usrp::subdev_spec_t &);      double set_tx_dsp_freq(const std::string &, const double);      uhd::meta_range_t get_tx_dsp_freq_range(const std::string &); -    void update_ref_source(const std::string &, const std::string &); +    void update_clock_source(const std::string &, const std::string &);  };  #endif /* INCLUDED_USRP2_IMPL_HPP */ | 
