From e5516e939b918811223f51bad66765e9680fa3fe Mon Sep 17 00:00:00 2001 From: Reinier van der Walle <walle@astron.nl> Date: Mon, 18 Apr 2016 12:13:29 +0000 Subject: [PATCH] databuffer read data 1024 -> 2048 --- .../tb/python/tc_compaan_unb1_10g_bg_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/compaan/designs/compaan_unb1_10g_bg_db/tb/python/tc_compaan_unb1_10g_bg_db.py b/applications/compaan/designs/compaan_unb1_10g_bg_db/tb/python/tc_compaan_unb1_10g_bg_db.py index 16d5bc77ce..d08e4139c3 100644 --- a/applications/compaan/designs/compaan_unb1_10g_bg_db/tb/python/tc_compaan_unb1_10g_bg_db.py +++ b/applications/compaan/designs/compaan_unb1_10g_bg_db/tb/python/tc_compaan_unb1_10g_bg_db.py @@ -203,6 +203,6 @@ bg.write_enable() db_out = [] do_until_ge(db.read_nof_words, ms_retry=1000, val=1024, s_timeout=3600) for i in range(1): - db_out.append(flatten(db.read_data_buffer(streamNr=i, n=1024, radix='uns', width=64, nofColumns=1))) + db_out.append(flatten(db.read_data_buffer(streamNr=i, n=2048, radix='uns', width=64, nofColumns=1))) #n=2048 (32 bit word) = 1024 (64 bit word) print db_out -- GitLab