Skip to content

Commit

Permalink
Merge pull request #163 from cyntem/patch-1
Browse files Browse the repository at this point in the history
Update a7_gtp.py  transceiver resets have to stay low for 10us.
  • Loading branch information
enjoy-digital authored Aug 19, 2024
2 parents 583137e + 4653a09 commit 32df452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liteeth/phy/a7_gtp.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(self, sys_clk_freq):
# After configuration, transceiver resets have to stay low for
# at least 500ns.
# See https://www.xilinx.com/support/answers/43482.html
timer_max = ceil(500e-9*sys_clk_freq)
timer_max = ceil(10000e-9*sys_clk_freq)
timer = Signal(max=timer_max+1)
tick = Signal()
self.sync += [
Expand Down

0 comments on commit 32df452

Please sign in to comment.