tools/litex_server: revert CommUDP's max_length to 1.
https://github.com/enjoy-digital/liteeth/issues/52 needs to be investigated before enabling _read_merger on UDP.
This commit is contained in:
parent
996be95725
commit
d1ef64f9fd
|
@ -123,7 +123,7 @@ class RemoteServer(EtherboneIPC):
|
|||
if record.reads != None:
|
||||
max_length = {
|
||||
"CommUART": 256,
|
||||
"CommUDP": 4,
|
||||
"CommUDP": 1,
|
||||
}.get(self.comm.__class__.__name__, 1)
|
||||
bursts = {
|
||||
"CommUART": ["incr", "fixed"]
|
||||
|
|
Loading…
Reference in New Issue