diff options
author | Matt Ettus <matt@ettus.com> | 2010-09-22 19:06:02 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2011-05-26 17:31:19 -0700 |
commit | 92a608b2fc874df1a7af16202d626dcc5676fd72 (patch) | |
tree | 7a11731a9aca07464a0a47152e244f5c289be1b1 /usrp2/top | |
parent | 955572c4ad4866202256fed4c7200ac14106e079 (diff) | |
download | uhd-92a608b2fc874df1a7af16202d626dcc5676fd72.tar.gz uhd-92a608b2fc874df1a7af16202d626dcc5676fd72.tar.bz2 uhd-92a608b2fc874df1a7af16202d626dcc5676fd72.zip |
send reset to the gpif
Diffstat (limited to 'usrp2/top')
-rw-r--r-- | usrp2/top/u1plus/u1plus_core.v | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usrp2/top/u1plus/u1plus_core.v b/usrp2/top/u1plus/u1plus_core.v index 9dca0031b..2674c3251 100644 --- a/usrp2/top/u1plus/u1plus_core.v +++ b/usrp2/top/u1plus/u1plus_core.v @@ -61,10 +61,11 @@ module u1plus_core wire [7:0] rate; wire bus_error; + wire gpif_rst = 0; gpif #(.TXFIFOSIZE(TXFIFOSIZE), .RXFIFOSIZE(RXFIFOSIZE)) - gpif (.gpif_clk(gpif_clk), .gpif_d(gpif_d), .gpif_ctl(gpif_ctl), - .gpif_rdy(gpif_rdy), .gpif_misc(gpif_misc), + gpif (.gpif_clk(gpif_clk), .gpif_rst(gpif_rst), .gpif_d(gpif_d), + .gpif_ctl(gpif_ctl), .gpif_rdy(gpif_rdy), .gpif_misc(gpif_misc), .wb_clk(wb_clk), .wb_rst(wb_rst), .wb_adr_o(m0_adr), .wb_dat_mosi(m0_dat_mosi), .wb_dat_miso(m0_dat_miso), |