diff options
author | Matt Ettus <matt@ettus.com> | 2011-07-21 15:24:56 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-07-21 15:24:56 -0700 |
commit | f281c2230a25c84351c0adc1bbae535edd5d260e (patch) | |
tree | 309b942f347d94e32f5a077043ae10f4734f4244 /usrp2/top/N2x0 | |
parent | 0f50e9de3a2bb65b170aa5d1e450ce7996ce0ec3 (diff) | |
download | uhd-f281c2230a25c84351c0adc1bbae535edd5d260e.tar.gz uhd-f281c2230a25c84351c0adc1bbae535edd5d260e.tar.bz2 uhd-f281c2230a25c84351c0adc1bbae535edd5d260e.zip |
u2/u2p: further qualify the serdes link light
Diffstat (limited to 'usrp2/top/N2x0')
-rw-r--r-- | usrp2/top/N2x0/u2plus_core.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/top/N2x0/u2plus_core.v b/usrp2/top/N2x0/u2plus_core.v index e2142ad06..d4b2fc815 100644 --- a/usrp2/top/N2x0/u2plus_core.v +++ b/usrp2/top/N2x0/u2plus_core.v @@ -196,7 +196,7 @@ module u2plus_core wire ser_rx_full, ser_tx_full, dsp_rx_full, dsp_tx_full, eth_rx_full, eth_tx_full, eth_rx_full2; wire ser_rx_empty, ser_tx_empty, dsp_rx_empty, dsp_tx_empty, eth_rx_empty, eth_tx_empty, eth_rx_empty2; - wire serdes_link_up; + wire serdes_link_up, good_sync; wire epoch; wire [31:0] irq; wire [63:0] vita_time, vita_time_pps; @@ -499,7 +499,7 @@ module u2plus_core // In Rev3 there are only 6 leds, and the highest one is on the ETH connector wire [7:0] led_src, led_sw; - wire [7:0] led_hw = {run_tx, (run_rx0_d1 | run_rx1_d1), clk_status, serdes_link_up, 1'b0}; + wire [7:0] led_hw = {run_tx, (run_rx0_d1 | run_rx1_d1), clk_status, serdes_link_up & good_sync, 1'b0}; setting_reg #(.my_addr(SR_MISC+3),.width(8)) sr_led (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), .in(set_data),.out(led_sw),.changed()); |