summaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-06-16 10:52:21 -0700
committerJosh Blum <josh@joshknows.com>2011-06-16 10:52:21 -0700
commit295a656814e258af4c1be9048953bfb3c6b0da71 (patch)
tree352a92b9deebd1307ddd4974e22152c5f2d4d58a /host/lib/usrp/usrp2
parent615af6ca98c259460517c71647235b102978b5a1 (diff)
downloaduhd-295a656814e258af4c1be9048953bfb3c6b0da71.tar.gz
uhd-295a656814e258af4c1be9048953bfb3c6b0da71.tar.bz2
uhd-295a656814e258af4c1be9048953bfb3c6b0da71.zip
usrp: use dboard name A or single slot boards
Diffstat (limited to 'host/lib/usrp/usrp2')
-rw-r--r--host/lib/usrp/usrp2/mboard_impl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/usrp/usrp2/mboard_impl.cpp b/host/lib/usrp/usrp2/mboard_impl.cpp
index 5315522f0..197296cf0 100644
--- a/host/lib/usrp/usrp2/mboard_impl.cpp
+++ b/host/lib/usrp/usrp2/mboard_impl.cpp
@@ -289,10 +289,10 @@ void usrp2_mboard_impl::set_time_spec(const time_spec_t &time_spec, bool now){
/***********************************************************************
* MBoard Get Properties
**********************************************************************/
-static const std::string dboard_name = "0";
-
void usrp2_mboard_impl::get(const wax::obj &key_, wax::obj &val){
named_prop_t key = named_prop_t::extract(key_);
+ static const std::string dboard_name = "A";
+
//handle the get request conditioned on the key
switch(key.as<mboard_prop_t>()){
case MBOARD_PROP_NAME:
@@ -304,7 +304,7 @@ void usrp2_mboard_impl::get(const wax::obj &key_, wax::obj &val){
return;
case MBOARD_PROP_RX_DBOARD:
- UHD_ASSERT_THROW(key.name == dboard_name);
+ UHD_ASSERT_THROW(key.name == dboard_name or key.name == "0"); //allow for old name to work
val = _rx_dboard_proxy->get_link();
return;
@@ -313,7 +313,7 @@ void usrp2_mboard_impl::get(const wax::obj &key_, wax::obj &val){
return;
case MBOARD_PROP_TX_DBOARD:
- UHD_ASSERT_THROW(key.name == dboard_name);
+ UHD_ASSERT_THROW(key.name == dboard_name or key.name == "0"); //allow for old name to work
val = _tx_dboard_proxy->get_link();
return;