diff options
author | Josh Blum | 2010-05-18 11:51:31 -0700 |
---|---|---|
committer | Josh Blum | 2010-05-18 11:51:31 -0700 |
commit | 935b9713694359862fd5721a2cf070ac072ce283 (patch) | |
tree | fd3bd402090d689ae114cb5e2968332edb1e20e4 /usrp/host/lib/db_boards.cc | |
parent | b6f86944737975efde1275144c1c344e4a633146 (diff) | |
parent | a39ca4f36cee81bb44f553c1a1d2045a29231e0b (diff) | |
download | gnuradio-935b9713694359862fd5721a2cf070ac072ce283.tar.gz gnuradio-935b9713694359862fd5721a2cf070ac072ce283.tar.bz2 gnuradio-935b9713694359862fd5721a2cf070ac072ce283.zip |
Merge branch 'master' of http://gnuradio.org/git/gnuradio into uhd
Diffstat (limited to 'usrp/host/lib/db_boards.cc')
-rw-r--r-- | usrp/host/lib/db_boards.cc | 5 |
1 files changed, 5 insertions, 0 deletions
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 <usrp/db_xcvr2450.h> #include <usrp/db_dtt754.h> #include <usrp/db_dtt768.h> +#include <usrp/db_bitshark_rx.h> #include <cstdio> std::vector<db_base_sptr> @@ -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_basic_tx>(usrp)){ db.push_back(db_base_sptr(new db_basic_tx(usrp, which_side))); |