From d37ef60e70bd0ce8d28079143b6859d8b928395e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 16 Feb 2022 17:57:24 +0100 Subject: [PATCH] remote/comm_udp: Increase timeout. --- litex/tools/remote/comm_udp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/tools/remote/comm_udp.py b/litex/tools/remote/comm_udp.py index 6e1dae0a8..77f24eb8b 100644 --- a/litex/tools/remote/comm_udp.py +++ b/litex/tools/remote/comm_udp.py @@ -26,7 +26,7 @@ class CommUDP(CSRBuilder): return self.socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.socket.bind(("", self.port)) - self.socket.settimeout(1) + self.socket.settimeout(2) if probe: self.probe(self.server, self.port)