From 684ae45dbe25962bc8bd0546cb465bf172e27c38 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 22 Jun 2017 10:32:39 +0200 Subject: [PATCH] soc/tools: remove csr builder from comm_udp (we should use litex_server) --- litex/soc/tools/remote/comm_udp.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/litex/soc/tools/remote/comm_udp.py b/litex/soc/tools/remote/comm_udp.py index 10179128f..82530c45a 100644 --- a/litex/soc/tools/remote/comm_udp.py +++ b/litex/soc/tools/remote/comm_udp.py @@ -2,12 +2,10 @@ import socket from litex.soc.tools.remote.etherbone import EtherbonePacket, EtherboneRecord from litex.soc.tools.remote.etherbone import EtherboneReads, EtherboneWrites -from litex.soc.tools.remote.csr_builder import CSRBuilder -class CommUDP(CSRBuilder): - def __init__(self, server="192.168.1.50", port=1234, csr_csv="csr.csv", csr_data_width=None, debug=False): - if csr_csv is not None: - CSRBuilder.__init__(self, self, csr_csv, csr_data_width) + +class CommUDP: + def __init__(self, server="192.168.1.50", port=1234, debug=False): self.server = server self.port = port self.debug = debug