summaryrefslogtreecommitdiff
path: root/usrp/host/lib/db_boards.cc
diff options
context:
space:
mode:
authorJohnathan Corgan2010-05-17 19:33:46 -0700
committerJohnathan Corgan2010-05-17 19:33:46 -0700
commita39ca4f36cee81bb44f553c1a1d2045a29231e0b (patch)
treee9bfb14f9fad51373ef147ac00fcd8a43626d3cf /usrp/host/lib/db_boards.cc
parent1c22592ca05eff573b755e36a9685cfadf8a2723 (diff)
parent22a3ed8955a9d40796d58e83993b5f56f117a27a (diff)
downloadgnuradio-a39ca4f36cee81bb44f553c1a1d2045a29231e0b.tar.gz
gnuradio-a39ca4f36cee81bb44f553c1a1d2045a29231e0b.tar.bz2
gnuradio-a39ca4f36cee81bb44f553c1a1d2045a29231e0b.zip
Merge branch 'wip/burx_support'
* wip/burx_support: -Updated to allow BURX support to be built into standard txrx.bin Once and for all, here is the properly updated Makefile.am for the apps Updated db_bitshark_rx.c to the proper version that includes the Change default bandwidth to 25 MHz to match maximum USRP2 bandwidth Update incorrectly checked in Makefile.am usrp: Cleanup for merge of bitshark daughterboard code Including bitshark_rx.h header file for USRP2 build Fixed issue with with wrong Makefile.am files being copied Add support for the Bitshark USRP RX (BURX) daughterboard for the USRP2. Add support for the Bitshark USRP RX (BURX) daughterboard for the USRP1.
Diffstat (limited to 'usrp/host/lib/db_boards.cc')
-rw-r--r--usrp/host/lib/db_boards.cc5
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)));