commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r9419 - gnuradio/branches/developers/trondeau/dbs/usrp


From: trondeau
Subject: [Commit-gnuradio] r9419 - gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy
Date: Mon, 25 Aug 2008 19:27:38 -0600 (MDT)

Author: trondeau
Date: 2008-08-25 19:27:38 -0600 (Mon, 25 Aug 2008)
New Revision: 9419

Modified:
   gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/Makefile.am
   gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/db_boards.cc
Log:
Makefile and instantiation functions for new daughterboards.

Modified: 
gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/Makefile.am
===================================================================
--- gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/Makefile.am  
2008-08-26 01:27:04 UTC (rev 9418)
+++ gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/Makefile.am  
2008-08-26 01:27:38 UTC (rev 9419)
@@ -111,7 +111,11 @@
        db_tv_rx.cc                     \
        db_flexrf.cc                    \
        db_flexrf_mimo.cc               \
-       db_dbs_rx.cc
+       db_dbs_rx.cc                    \
+       db_xcvr2450.cc                  \
+       db_wbx.cc                       \
+       db_dtt754.cc                    \
+       db_dtt768.cc
 
 
 if FUSB_TECH_generic
@@ -148,7 +152,11 @@
        db_tv_rx.h                      \
        db_flexrf.h                     \
        db_flexrf_mimo.h                \
-       db_dbs_rx.h
+       db_dbs_rx.h                     \
+       db_xcvr2450.h                   \
+       db_wbx.h                        \
+       db_dtt754.h                     \
+       db_dtt768.h
 
 noinst_HEADERS =                       \
        ad9862.h                        \

Modified: 
gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/db_boards.cc
===================================================================
--- gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/db_boards.cc 
2008-08-26 01:27:04 UTC (rev 9418)
+++ gnuradio/branches/developers/trondeau/dbs/usrp/host/lib/legacy/db_boards.cc 
2008-08-26 01:27:38 UTC (rev 9419)
@@ -26,6 +26,10 @@
 #include <db_tv_rx.h>
 #include <db_flexrf.h>
 #include <db_flexrf_mimo.h>
+#include <db_xcvr2450.h>
+#include <db_wbx.h>
+#include <db_dtt754.h>
+#include <db_dtt768.h>
 
 std::vector<db_base_sptr>
 instantiate_dbs(int dbid, usrp_basic * usrp, int which)
@@ -87,7 +91,16 @@
   case(USRP_DBID_FLEX_900_RX_MIMO_B):  db.push_back(db_base_sptr(new 
db_flexrf_900_rx_mimo_b(usrp, which))); break;
   case(USRP_DBID_FLEX_400_TX_MIMO_B):  db.push_back(db_base_sptr(new 
db_flexrf_400_tx_mimo_b(usrp, which))); break;
   case(USRP_DBID_FLEX_400_RX_MIMO_B):  db.push_back(db_base_sptr(new 
db_flexrf_400_rx_mimo_b(usrp, which))); break;
+
+  case(USRP_DBID_XCVR2450_TX): db.push_back(db_base_sptr(new 
db_xcvr2450_tx(usrp, which))); break;
+  case(USRP_DBID_XCVR2450_RX): db.push_back(db_base_sptr(new 
db_xcvr2450_rx(usrp, which))); break;
   
+  case(USRP_DBID_WBX_LO_TX): db.push_back(db_base_sptr(new db_wbx_lo_tx(usrp, 
which))); break;
+  case(USRP_DBID_WBX_LO_RX): db.push_back(db_base_sptr(new db_wbx_lo_rx(usrp, 
which))); break;
+
+  case(USRP_DBID_DTT754): db.push_back(db_base_sptr(new db_dtt754(usrp, 
which))); break;
+  case(USRP_DBID_DTT768): db.push_back(db_base_sptr(new db_dtt768(usrp, 
which))); break;
+
   case(-1):
     if(usrp->istx()) {
       db.push_back(db_base_sptr(new db_basic_tx(usrp, which)));





reply via email to

[Prev in Thread] Current Thread [Next in Thread]