diff options
author | Matt Ettus <matt@ettus.com> | 2010-07-20 11:16:41 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-07-20 11:16:41 -0700 |
commit | 3b6b6e153084bf1d57231c0a565e2a0204467b04 (patch) | |
tree | bf3477baf704605eefae74fb4482604f6b040b1e /usrp2/top/u2plus/u2plus.v | |
parent | e73ffa9f830b070a6b897edfbcfadf35b6b1f0c6 (diff) | |
download | uhd-3b6b6e153084bf1d57231c0a565e2a0204467b04.tar.gz uhd-3b6b6e153084bf1d57231c0a565e2a0204467b04.tar.bz2 uhd-3b6b6e153084bf1d57231c0a565e2a0204467b04.zip |
connect SPI to adc, correct capitalization of SEN pins
Diffstat (limited to 'usrp2/top/u2plus/u2plus.v')
-rw-r--r-- | usrp2/top/u2plus/u2plus.v | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/usrp2/top/u2plus/u2plus.v b/usrp2/top/u2plus/u2plus.v index 1feed1314..efa1c9390 100644 --- a/usrp2/top/u2plus/u2plus.v +++ b/usrp2/top/u2plus/u2plus.v @@ -346,14 +346,15 @@ module u2plus .sclk (sclk_int), .mosi (mosi), .miso (miso), - .sen_clk (sen_clk), - .sen_dac (sen_dac), - .sen_tx_db (sen_tx_db), - .sen_tx_adc (sen_tx_adc), - .sen_tx_dac (sen_tx_dac), - .sen_rx_db (sen_rx_db), - .sen_rx_adc (sen_rx_adc), - .sen_rx_dac (sen_rx_dac), + .sen_clk (SEN_CLK), + .sen_dac (SEN_DAC), + .sen_adc (SEN_ADC), + .sen_tx_db (SEN_TX_DB), + .sen_tx_adc (SEN_TX_ADC), + .sen_tx_dac (SEN_TX_DAC), + .sen_rx_db (SEN_RX_DB), + .sen_rx_adc (SEN_RX_ADC), + .sen_rx_dac (SEN_RX_DAC), .io_tx (io_tx[15:0]), .io_rx (io_rx[15:0]), .RAM_D (RAM_D), |