Skip to content

Commit

Permalink
Compatibility with Zynq7000 FPGAs (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoyBed committed May 26, 2024
1 parent f492a65 commit b3ccc51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liteiclink/serwb/phy.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def __init__(self, device, pads, mode="master", init_timeout=2**16, clk="sys", c
assert clk_ratio == "1:1"
taps = 512
self.serdes = KUSerdes(pads, mode)
elif device[:4] == "xc7a":
elif device[:4] in ["xc7a", "xc7z"]:
assert clk_ratio == "1:1"
taps = 32
self.serdes = S7Serdes(pads, mode)
Expand Down

0 comments on commit b3ccc51

Please sign in to comment.