Merge pull request #163 from cyntem/patch-1

Update a7_gtp.py  transceiver resets have to stay low for 10us.
This commit is contained in:
enjoy-digital 2024-08-19 09:14:05 +02:00 committed by GitHub
commit 32df4523ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class GTPTxInit(Module):
# After configuration, transceiver resets have to stay low for # After configuration, transceiver resets have to stay low for
# at least 500ns. # at least 500ns.
# See https://www.xilinx.com/support/answers/43482.html # 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) timer = Signal(max=timer_max+1)
tick = Signal() tick = Signal()
self.sync += [ self.sync += [