commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r8879 - gnuradio/branches/developers/trondeau/dbs/gr-u


From: trondeau
Subject: [Commit-gnuradio] r8879 - gnuradio/branches/developers/trondeau/dbs/gr-usrp/src
Date: Sun, 13 Jul 2008 11:42:39 -0600 (MDT)

Author: trondeau
Date: 2008-07-13 11:42:39 -0600 (Sun, 13 Jul 2008)
New Revision: 8879

Modified:
   gnuradio/branches/developers/trondeau/dbs/gr-usrp/src/db_boards.cc
Log:
clean-up. This check-in works for the basic and tv_rx daughterboards as I can 
test them. The swig interface can probably be cleaned up a bit. I'm concerned a 
bit with memory clean up when passing the daughterboard pointers back.

Modified: gnuradio/branches/developers/trondeau/dbs/gr-usrp/src/db_boards.cc
===================================================================
--- gnuradio/branches/developers/trondeau/dbs/gr-usrp/src/db_boards.cc  
2008-07-13 17:33:16 UTC (rev 8878)
+++ gnuradio/branches/developers/trondeau/dbs/gr-usrp/src/db_boards.cc  
2008-07-13 17:42:39 UTC (rev 8879)
@@ -28,22 +28,18 @@
 
   switch(dbid) {
   case(USRP_DBID_BASIC_TX):
-    printf("USRP_DBID_BASIC_TX matches\n");
     db = new db_basic_tx(usrp, which);
     break;
 
   case(USRP_DBID_TV_RX):
-    printf("USRP_DBID_TV_RX matches\n");
     db = new db_tv_rx(usrp, which, 43.75e6, 5.75e6);
     break;
 
   case(USRP_DBID_TV_RX_REV_2):
-    printf("USRP_DBID_TV_RX_REV_2 matches\n");
     db = new db_tv_rx(usrp, which, 44e6, 20e6);
     break;
 
   case(USRP_DBID_TV_RX_REV_3):
-    printf("USRP_DBID_TV_RX_REV_3 matches\n");
     db = new db_tv_rx(usrp, which, 44e6, 20e6);
     break;
   





reply via email to

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