diff options
author | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-04-27 19:50:03 +0000 |
---|---|---|
committer | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-04-27 19:50:03 +0000 |
commit | 716c81a7acd60667802549c199d9bdec207af63a (patch) | |
tree | cc7846cb56bf8d462b4bfb628d375af0bf700304 /usrp2/firmware/lib/db_init.c | |
parent | b29ba40b81eb20cdb4ef92f99d1291d3d64ef5d2 (diff) |
somebody commented out the tx mux setting which prevented the xcvr2450 from working. wrong values for rfx boards were not seen because of the above error.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10925 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/firmware/lib/db_init.c')
-rw-r--r-- | usrp2/firmware/lib/db_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/firmware/lib/db_init.c b/usrp2/firmware/lib/db_init.c index f54fc0ae3e..925a34f399 100644 --- a/usrp2/firmware/lib/db_init.c +++ b/usrp2/firmware/lib/db_init.c @@ -267,8 +267,8 @@ db_init(void) //printf("db_init: tx dbid = 0x%x\n", tx_dboard->dbid); set_gpio_mode(GPIO_TX_BANK, tx_dboard); tx_dboard->init(tx_dboard); - //m = determine_tx_mux_value(tx_dboard); - //dsp_tx_regs->tx_mux = m; + m = determine_tx_mux_value(tx_dboard); + dsp_tx_regs->tx_mux = m; //printf("tx_mux = 0x%x\n", m); tx_dboard->current_lo_offset = tx_dboard->default_lo_offset; |