diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-26 11:34:27 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-26 11:34:27 -0800 |
commit | 2003cda6289c0b9f9d60cfb6d5fdc981f3f4fc9d (patch) | |
tree | 17637bc9418d607babdd98c555d2e130f457052a /host/lib/usrp | |
parent | 789cca28e8f920be56840b29e6e8cf0db1ba61aa (diff) | |
parent | db1fd30da6def1269eae62b5ccd3c81c28ae000f (diff) | |
download | uhd-2003cda6289c0b9f9d60cfb6d5fdc981f3f4fc9d.tar.gz uhd-2003cda6289c0b9f9d60cfb6d5fdc981f3f4fc9d.tar.bz2 uhd-2003cda6289c0b9f9d60cfb6d5fdc981f3f4fc9d.zip |
Merge branch 'macos'
Diffstat (limited to 'host/lib/usrp')
-rw-r--r-- | host/lib/usrp/subdev_spec.cpp | 2 | ||||
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.cpp | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/host/lib/usrp/subdev_spec.cpp b/host/lib/usrp/subdev_spec.cpp index 51c88bda3..d5d950f1f 100644 --- a/host/lib/usrp/subdev_spec.cpp +++ b/host/lib/usrp/subdev_spec.cpp @@ -46,7 +46,7 @@ bool usrp::operator==(const subdev_spec_pair_t &lhs, const subdev_spec_pair_t &r subdev_spec_t::subdev_spec_t(const std::string &markup){ BOOST_FOREACH(const std::string &pair, pair_tokenizer(markup)){ - if (pair == "") continue; + if (pair.empty()) continue; std::vector<std::string> db_sd; boost::split(db_sd, pair, boost::is_any_of(":")); switch(db_sd.size()){ case 1: this->push_back(subdev_spec_pair_t("", db_sd.front())); break; diff --git a/host/lib/usrp/usrp2/usrp2_impl.cpp b/host/lib/usrp/usrp2/usrp2_impl.cpp index 059ddf65f..9ce0f7359 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.cpp +++ b/host/lib/usrp/usrp2/usrp2_impl.cpp @@ -202,8 +202,11 @@ static device::sptr usrp2_make(const device_addr_t &device_addr){ //setup the dsp transport hints (default to a large recv buff) device_addr_t dsp_xport_hints = device_addr; if (not dsp_xport_hints.has_key("recv_buff_size")){ - //set to half-a-second of buffering at max rate - dsp_xport_hints["recv_buff_size"] = "50e6"; + //only enable on platforms that are happy with the large buffer resize + #if defined(UHD_PLATFORM_LINUX) || defined(UHD_PLATFORM_WIN32) + //set to half-a-second of buffering at max rate + dsp_xport_hints["recv_buff_size"] = "50e6"; + #endif /*defined(UHD_PLATFORM_LINUX) || defined(UHD_PLATFORM_WIN32)*/ } //create a ctrl and data transport for each address |