diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-16 13:49:39 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-16 13:49:39 -0700 |
commit | 8be3b883f5b1a889f4f07611e8954449cc07c2b3 (patch) | |
tree | 0622e8702105a6e43569b902b16700a0072d4cbd /host/lib/usrp/dboard | |
parent | fc40ff2f1327d01c72c4d7dbc07a14e473251981 (diff) | |
download | uhd-8be3b883f5b1a889f4f07611e8954449cc07c2b3.tar.gz uhd-8be3b883f5b1a889f4f07611e8954449cc07c2b3.tar.bz2 uhd-8be3b883f5b1a889f4f07611e8954449cc07c2b3.zip |
Added ability to set the subdevices in use for rx and tx dboards.
This is used to calculate and set the ddc and duc muxes.
Also, minor fix for burning addrs (wrong pointer....)
Diffstat (limited to 'host/lib/usrp/dboard')
-rw-r--r-- | host/lib/usrp/dboard/basic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/basic.cpp b/host/lib/usrp/dboard/basic.cpp index 095b77ce1..5a82bf145 100644 --- a/host/lib/usrp/dboard/basic.cpp +++ b/host/lib/usrp/dboard/basic.cpp @@ -100,7 +100,7 @@ void basic_rx::rx_get(const wax::obj &key_, wax::obj &val){ //handle the get request conditioned on the key switch(key.as<subdev_prop_t>()){ case SUBDEV_PROP_NAME: - val = std::string(str(boost::format("%s:%s") + val = std::string(str(boost::format("%s - %s") % dboard_id::to_string(get_rx_id()) % get_subdev_name() )); |