diff options
author | Eric Blossom | 2009-12-08 15:07:33 -0800 |
---|---|---|
committer | Eric Blossom | 2009-12-08 15:07:33 -0800 |
commit | 65269307fcdf3228a3fcd6f33d6a4be2530f1654 (patch) | |
tree | b11f341d02d992750ba4ec9dd40dcd7c450e854b | |
parent | f939f997fa50b214dd5a60b60b7b6d8e7606b9ff (diff) | |
download | gnuradio-65269307fcdf3228a3fcd6f33d6a4be2530f1654.tar.gz gnuradio-65269307fcdf3228a3fcd6f33d6a4be2530f1654.tar.bz2 gnuradio-65269307fcdf3228a3fcd6f33d6a4be2530f1654.zip |
Disable support for tvrx rev 2 on usrp2. There are only a few of these in existence.
-rw-r--r-- | usrp2/firmware/lib/db_init.c | 2 | ||||
-rw-r--r-- | usrp2/firmware/lib/db_tvrx.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/usrp2/firmware/lib/db_init.c b/usrp2/firmware/lib/db_init.c index 925a34f39..a0bfc5cfb 100644 --- a/usrp2/firmware/lib/db_init.c +++ b/usrp2/firmware/lib/db_init.c @@ -69,7 +69,9 @@ struct db_base *all_dboards[] = { &db_rfx_2400_tx, &db_rfx_2400_rx, &db_tvrx1, +#if 0 &db_tvrx2, +#endif &db_tvrx3, &db_dbsrx, &db_xcvr2450_tx, diff --git a/usrp2/firmware/lib/db_tvrx.c b/usrp2/firmware/lib/db_tvrx.c index f38bba8f1..49bf75883 100644 --- a/usrp2/firmware/lib/db_tvrx.c +++ b/usrp2/firmware/lib/db_tvrx.c @@ -101,6 +101,7 @@ struct db_tvrx1 db_tvrx1 = { .common.second_if = U2_DOUBLE_TO_FXPT_FREQ(5.75e6), }; +#if 0 struct db_tvrx2 db_tvrx2 = { .base.dbid = 0x000c, .base.is_tx = false, @@ -127,6 +128,7 @@ struct db_tvrx2 db_tvrx2 = { .common.first_if = U2_DOUBLE_TO_FXPT_FREQ(44e6), .common.second_if = U2_DOUBLE_TO_FXPT_FREQ(56e6), // Fs - 44e6 }; +#endif struct db_tvrx3 db_tvrx3 = { .base.dbid = 0x0040, |