From: Florent Kermarrec Date: Thu, 22 Jun 2017 08:32:39 +0000 (+0200) Subject: soc/tools: remove csr builder from comm_udp (we should use litex_server) X-Git-Tag: 24jan2021_ls180~1843 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=684ae45dbe25962bc8bd0546cb465bf172e27c38;p=litex.git soc/tools: remove csr builder from comm_udp (we should use litex_server) --- diff --git a/litex/soc/tools/remote/comm_udp.py b/litex/soc/tools/remote/comm_udp.py index 10179128..82530c45 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