tools/litex_server: revert CommUDP's max length to 1 (needs more testing).

This commit is contained in:
Florent Kermarrec 2020-11-09 16:35:04 +01:00
parent 1d04b1dd83
commit 5aa70d975c
1 changed files with 1 additions and 1 deletions

View File

@ -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"]