tools/litex_server: revert CommUDP's max length to 4 now that https://github.com/enjoy-digital/liteeth/issues/52 is fixed).

This commit is contained in:
Florent Kermarrec 2020-11-06 19:50:25 +01:00
parent 9fe3a42072
commit 9359aa0688
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class RemoteServer(EtherboneIPC):
if record.reads != None: if record.reads != None:
max_length = { max_length = {
"CommUART": 256, "CommUART": 256,
"CommUDP": 1, "CommUDP": 4,
}.get(self.comm.__class__.__name__, 1) }.get(self.comm.__class__.__name__, 1)
bursts = { bursts = {
"CommUART": ["incr", "fixed"] "CommUART": ["incr", "fixed"]