Skip to content
Snippets Groups Projects
Commit e5516e93 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

databuffer read data 1024 -> 2048

parent 35a7a1ae
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment