aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorDerek Kozel <derek.kozel@ettus.com>2016-11-01 16:38:25 -0700
committerMartin Braun <martin.braun@ettus.com>2016-11-01 17:03:46 -0700
commitf913d67b2fcf7905ee9f957681e4d29b051632c5 (patch)
treed1b02f96884a19bd1f824ebae8e6224ca4cedf58 /host
parent71ea3aa8ea0c1e44c7eee6a53a89fe7741329ab2 (diff)
downloaduhd-f913d67b2fcf7905ee9f957681e4d29b051632c5.tar.gz
uhd-f913d67b2fcf7905ee9f957681e4d29b051632c5.tar.bz2
uhd-f913d67b2fcf7905ee9f957681e4d29b051632c5.zip
TwinRX: Add rev B daughterboard ID
Diffstat (limited to 'host')
-rw-r--r--host/lib/usrp/dboard/db_twinrx.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/host/lib/usrp/dboard/db_twinrx.cpp b/host/lib/usrp/dboard/db_twinrx.cpp
index 477412de0..8fcc31cc7 100644
--- a/host/lib/usrp/dboard/db_twinrx.cpp
+++ b/host/lib/usrp/dboard/db_twinrx.cpp
@@ -39,6 +39,7 @@ using namespace uhd::usrp::dboard::twinrx;
using namespace uhd::experts;
static const dboard_id_t TWINRX_V100_000_ID(0x91);
+static const dboard_id_t TWINRX_V100_100_ID(0x93);
/*!
* twinrx_rcvr_fe is the dbaord class (dboard_base) that
@@ -340,4 +341,12 @@ UHD_STATIC_BLOCK(reg_twinrx_dboards)
boost::assign::list_of("0")("1"),
&make_twinrx_container
);
+
+ dboard_manager::register_dboard_restricted(
+ TWINRX_V100_100_ID,
+ &twinrx_rcvr::make_twinrx_fe,
+ "TwinRX v1.1",
+ boost::assign::list_of("0")("1"),
+ &make_twinrx_container
+ );
}