diff options
author | Matt Ettus <matt@ettus.com> | 2010-06-04 15:28:13 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-05-26 17:31:19 -0700 |
commit | 7e7e329a4a6ab48d6bea348176b5bcf5cbac5b9d (patch) | |
tree | 81031ecdf7e5d4ce3a6bf363156aba610165ea99 /usrp2/top/safe_u1plus/safe_u1plus.v | |
parent | 020df898dfddcb33c851b469f25dbfa75c91a045 (diff) | |
download | uhd-7e7e329a4a6ab48d6bea348176b5bcf5cbac5b9d.tar.gz uhd-7e7e329a4a6ab48d6bea348176b5bcf5cbac5b9d.tar.bz2 uhd-7e7e329a4a6ab48d6bea348176b5bcf5cbac5b9d.zip |
Use the 4th LED which is shared on the cfg_init_b pin
Diffstat (limited to 'usrp2/top/safe_u1plus/safe_u1plus.v')
-rw-r--r-- | usrp2/top/safe_u1plus/safe_u1plus.v | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usrp2/top/safe_u1plus/safe_u1plus.v b/usrp2/top/safe_u1plus/safe_u1plus.v index 108364833..e55c7f0be 100644 --- a/usrp2/top/safe_u1plus/safe_u1plus.v +++ b/usrp2/top/safe_u1plus/safe_u1plus.v @@ -4,8 +4,11 @@ module safe_u1plus (input CLK_FPGA_P, input CLK_FPGA_N, input reset_n, - output [2:0] debug_led // LED4 is shared w/INIT_B + output [2:0] debug_led, // LED4 is shared w/INIT_B + output fpga_cfg_init_b ); + + assign fpga_cfg_init_b = 1; // FPGA-specific pins connections wire clk_fpga, dsp_clk, clk_div, dcm_out, wb_clk, clock_ready; |