tools/litex_term: reduce sfl_payload_length to 64 as before.

See: https://github.com/enjoy-digital/litex/issues/720.
This commit is contained in:
Florent Kermarrec 2020-12-03 12:52:00 +01:00
parent 172dc18dfb
commit dba6653cb4
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ sfl_prompt_ack = b"\x06"
sfl_magic_req = b"sL5DdSMmkekro\n" sfl_magic_req = b"sL5DdSMmkekro\n"
sfl_magic_ack = b"z6IHG7cYDID6o\n" sfl_magic_ack = b"z6IHG7cYDID6o\n"
sfl_payload_length = 255 sfl_payload_length = 64 # FIXME: understand why 255 failing with USB-FIFO.
# General commands # General commands
sfl_cmd_abort = b"\x00" sfl_cmd_abort = b"\x00"