mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
siglent_sds1104xe: Avoid disabling hardware interface with BIOS ethernet reset.
This commit is contained in:
parent
c28a161392
commit
6117b98049
1 changed files with 1 additions and 0 deletions
|
@ -130,6 +130,7 @@ class BaseSoC(SoCCore):
|
|||
self.submodules.ip = LiteEthIP(self.ethmac, etherbone_mac_address, etherbone_ip_address, self.arp.table, dw=8)
|
||||
self.submodules.icmp = LiteEthICMP(self.ip, etherbone_ip_address, dw=8)
|
||||
self.submodules.udp = LiteEthUDP(self.ip, etherbone_ip_address, dw=8)
|
||||
self.add_constant("ETH_PHY_NO_RESET") # Disable reset from BIOS to avoid disabling Hardware Interface.
|
||||
|
||||
# Etherbone
|
||||
self.submodules.etherbone = LiteEthEtherbone(self.udp, 1234, mode="master")
|
||||
|
|
Loading…
Reference in a new issue