targets/efinix_titanium_ti60_f225_dev_kit.py: disable software_debug by default

This commit is contained in:
Gwenhael Goavec-Merou 2024-09-03 12:41:05 +02:00
parent 0787517338
commit 5a1e4bedfd
1 changed files with 1 additions and 1 deletions

View File

@ -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)