From 5a1e4bedfd6463c51a34ddaa10a28d5de8a34e9a Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Tue, 3 Sep 2024 12:41:05 +0200 Subject: [PATCH] targets/efinix_titanium_ti60_f225_dev_kit.py: disable software_debug by default --- litex_boards/targets/efinix_titanium_ti60_f225_dev_kit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_boards/targets/efinix_titanium_ti60_f225_dev_kit.py b/litex_boards/targets/efinix_titanium_ti60_f225_dev_kit.py index e63bb3e..9014faa 100755 --- a/litex_boards/targets/efinix_titanium_ti60_f225_dev_kit.py +++ b/litex_boards/targets/efinix_titanium_ti60_f225_dev_kit.py @@ -117,7 +117,7 @@ class BaseSoC(SoCCore): pads = pads, with_hw_init_reset = False) if with_ethernet: - self.add_ethernet(phy=self.ethphy, local_ip=eth_ip, remote_ip=remote_ip, software_debug=True) + self.add_ethernet(phy=self.ethphy, local_ip=eth_ip, remote_ip=remote_ip, software_debug=False) if with_etherbone: self.add_etherbone(phy=self.ethphy, ip_address=eth_ip)