Fix uninitialized register settings. FPGA code only cleared these during hardware reset.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5106 221aa14e-8319-0410-a670-987f0aec2ac5
This commit is contained in:
jcorgan 2007-04-25 16:27:37 +00:00
parent 0e9c5a85cb
commit a438fc29ef
1 changed files with 2 additions and 0 deletions

View File

@ -923,6 +923,8 @@ usrp_basic_tx::usrp_basic_tx (int which_board, int fusb_block_size, int fusb_nbl
_write_fpga_reg(FR_ATR_MASK_2, 0);
_write_fpga_reg(FR_ATR_TXVAL_2, 0);
_write_fpga_reg(FR_ATR_RXVAL_2, 0);
_write_fpga_reg(FR_ATR_TX_DELAY, 0);
_write_fpga_reg(FR_ATR_RX_DELAY, 0);
}