From d5fe3b38d5f406b111721ebf789323b49b8eff9d Mon Sep 17 00:00:00 2001 From: JohnOrlando Date: Tue, 30 Mar 2010 19:54:39 -0500 Subject: Add support for the Bitshark USRP RX (BURX) daughterboard for the USRP1. --- usrp/host/lib/db_boards.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'usrp/host/lib/db_boards.cc') diff --git a/usrp/host/lib/db_boards.cc b/usrp/host/lib/db_boards.cc index 590d8132d..9324d58ee 100644 --- a/usrp/host/lib/db_boards.cc +++ b/usrp/host/lib/db_boards.cc @@ -36,6 +36,7 @@ #include #include #include +#include #include std::vector @@ -209,6 +210,10 @@ instantiate_dbs(int dbid, usrp_basic_sptr usrp, int which_side) db.push_back(db_base_sptr(new db_dtt768(usrp, which_side))); break; + case(USRP_DBID_BITSHARK_RX): + db.push_back(db_base_sptr(new db_bitshark_rx(usrp, which_side))); + break; + case(-1): if (boost::dynamic_pointer_cast(usrp)){ db.push_back(db_base_sptr(new db_basic_tx(usrp, which_side))); -- cgit