From: hadaq Date: Fri, 21 May 2010 11:25:59 +0000 (+0000) Subject: changed fifo_rx_rd_en to be not static anymore. X-Git-Tag: oldGBE~283 X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=f55c4e3d65c7562efeeddd81a3ced04d4e3b25f1;p=trbnet.git changed fifo_rx_rd_en to be not static anymore. --- diff --git a/media_interfaces/trb_net16_med_ecp_sfp_gbe.vhd b/media_interfaces/trb_net16_med_ecp_sfp_gbe.vhd index 3d952c0..3a1bf1b 100755 --- a/media_interfaces/trb_net16_med_ecp_sfp_gbe.vhd +++ b/media_interfaces/trb_net16_med_ecp_sfp_gbe.vhd @@ -921,11 +921,6 @@ refclk2core_out <= refck2core; ); end generate; ---<-- ff_force_disp_ch2 => "00", ---<-- ff_disp_sel_ch2 => "00", --->-- ff_xmit_ch2 => "00", -- UNKNOWN --->-- ff_rx_even_ch2 => open, -- UNKNOWN - ------------------------------------------------------------------------- -- RX Fifo & Data output ------------------------------------------------------------------------- @@ -945,7 +940,7 @@ port map( read_clock_in => sysclk, ); fifo_rx_reset <= reset_i or not rx_allow_q; -fifo_rx_rd_en <= '1'; +fifo_rx_rd_en <= not fifo_rx_empty; -- Received bytes need to be swapped if the SerDes is "off by one" in its internal 8bit path THE_BYTE_SWAP_PROC: process( sysclk ) -- CHANGED