OTOH (with regard to compiling still working): trying to run (at least some of the) examples in gnuradio-examples/python/usrp results in:
[snip]
    import db_tv_rx
File "/usr/local/lib/python2.4/site-packages/gnuradio/ db_tv_rx.py", line 190, in ?
    db_instantiator.add(usrp_dbid.TV_RX_REV_2,
AttributeError: 'module' object has no attribute 'TV_RX_REV_2'

Diff'ing this code ("<") and my previous checkout (2005-12-21; ">") gets:

184,191c177
<
< # With MT4937DI5-3x7702 with second downconversion
< db_instantiator.add(usrp_dbid.TV_RX,
< lambda usrp, which : (db_tv_rx(usrp, which, 5.75e6, False),))
<
< # With MT4937DI5-3x8680, 3x8680, and 3x8769 without second downconversion
< db_instantiator.add(usrp_dbid.TV_RX_REV_2,
< lambda usrp, which : (db_tv_rx(usrp, which, 43.75e6, True),))
---
> db_instantiator.add(usrp_dbid.TV_RX, lambda usrp, which : (db_tv_rx (usrp, which),))

So the module does has a TV_RX attribute, but not a TV_RX_REV_2 ... Could someone explain what this is and (hopefully) correct the error?


_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to