mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
target/stlv7325-v2: fix typo in eth phy delay
This commit is contained in:
parent
1185ff51f1
commit
1f6e7f36a5
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ class BaseSoC(SoCCore):
|
|||
self.ethphy = LiteEthPHYRGMII(
|
||||
clock_pads = self.platform.request("eth_clocks", 0),
|
||||
pads = self.platform.request("eth", 0),
|
||||
tx_delay = 1.48-9,
|
||||
rx_delay = 1.48-9,
|
||||
tx_delay = 1.48e-9,
|
||||
rx_delay = 1.48e-9,
|
||||
)
|
||||
self.add_ethernet(phy=self.ethphy)
|
||||
|
||||
|
|
Loading…
Reference in a new issue