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

Increase timeout to >> 1 hour, to avoid timeout in slow simulation.

parent 43931c4b
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ for rep in range(tc.repeat):
rx_seq_ddr[mb].write_disable(vLevel=5)
# Wait for the DDR memory to become available
do_until_eq(io_ddr[mb].read_init_done, ms_retry=3000, val=1, s_timeout=3600)
do_until_eq(io_ddr[mb].read_init_done, ms_retry=3000, val=1, s_timeout=36000)
for mb in mb_list:
# Flush Tx FIFO
......@@ -124,7 +124,7 @@ for rep in range(tc.repeat):
for mb in mb_list:
# Wait until controller write access is done
do_until_eq(io_ddr[mb].read_done, ms_retry=3000, val=1, s_timeout=3600)
do_until_eq(io_ddr[mb].read_done, ms_retry=3000, val=1, s_timeout=36000)
# Rx sequence start
rx_seq_ddr[mb].write_enable_cntr(vLevel=5)
......@@ -140,7 +140,7 @@ for rep in range(tc.repeat):
for mb in mb_list:
# Wait until controller read access is done
do_until_eq(io_ddr[mb].read_done, ms_retry=3000, val=1, s_timeout=3600)
do_until_eq(io_ddr[mb].read_done, ms_retry=3000, val=1, s_timeout=36000)
rx_seq_ddr[mb].read_result(vLevel=5)
......
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