Skip to content
Snippets Groups Projects
Commit 09821cf5 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Increase c_eth_runtime_timeout.

parent 9bb01e16
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
-- > add wave -position insertpoint \ -- > add wave -position insertpoint \
-- sim:/tb_lofar2_unb2c_sdp_station_xsub_one_xst_offload/c_exp_subband_xst -- sim:/tb_lofar2_unb2c_sdp_station_xsub_one_xst_offload/c_exp_subband_xst
-- > run -a -- > run -a
-- Takes about 50 m -- Takes about 60 m
-- View e.g.: -- View e.g.:
-- * rx_sdp_stat_re/im in radix decimal and in format literal or analogue -- * rx_sdp_stat_re/im in radix decimal and in format literal or analogue
-- * rx_sdp_stat_header.app -- * rx_sdp_stat_header.app
...@@ -130,7 +130,7 @@ ARCHITECTURE tb OF tb_lofar2_unb2c_sdp_station_xsub_one_xst_offload IS ...@@ -130,7 +130,7 @@ ARCHITECTURE tb OF tb_lofar2_unb2c_sdp_station_xsub_one_xst_offload IS
CONSTANT c_eth_crc_size : NATURAL := 1; -- word CONSTANT c_eth_crc_size : NATURAL := 1; -- word
CONSTANT c_eth_packet_size : NATURAL := c_eth_header_size + c_eth_crc_size + (c_sdp_W_statistic / c_word_w) * c_sdp_S_pn * c_sdp_S_pn * c_nof_complex; -- 20 + 2 * 12 * 12 * 2 = 596 CONSTANT c_eth_packet_size : NATURAL := c_eth_header_size + c_eth_crc_size + (c_sdp_W_statistic / c_word_w) * c_sdp_S_pn * c_sdp_S_pn * c_nof_complex; -- 20 + 2 * 12 * 12 * 2 = 596
CONSTANT c_eth_check_nof_valid : NATURAL := c_eth_check_nof_packets * c_eth_packet_size; CONSTANT c_eth_check_nof_valid : NATURAL := c_eth_check_nof_packets * c_eth_packet_size;
CONSTANT c_eth_runtime_timeout : TIME := (c_nof_sync + 2) * c_nof_clk_per_sync * c_ext_clk_period; -- eth statistics should be done after c_nof_sync CONSTANT c_eth_runtime_timeout : TIME := (c_nof_sync + 3) * c_nof_clk_per_sync * c_ext_clk_period; -- eth statistics should be done after c_nof_sync
-- DUT -- DUT
SIGNAL ext_clk : STD_LOGIC := '0'; SIGNAL ext_clk : STD_LOGIC := '0';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment