tools/litex_term: increase workaround delay for usb_fifo. (validated on Minispartan6 and MimasA7).

Still needs to be fixed properly.
This commit is contained in:
Florent Kermarrec 2020-04-09 10:52:15 +02:00
parent fdfede2281
commit 9afd017a3a
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ class LiteXTerm:
current_address += len(frame_data)
position += len(frame_data)
remaining -= len(frame_data)
time.sleep(1e-6) # FIXME: small delay needed with FT245 FIFO ("usb_fifo"), understand why.
time.sleep(1e-4) # FIXME: small delay needed with FT245 FIFO ("usb_fifo"), understand why.
end = time.time()
elapsed = end - start
f.close()