Skip to content

Commit

Permalink
Merge pull request #22 from trabucayre/efinix_rework_primitives
Browse files Browse the repository at this point in the history
serwb/efinixserdes.py: uses ClockSignal instead of a str
  • Loading branch information
trabucayre authored Sep 10, 2024
2 parents f5ac301 + 42682b9 commit 90ecf70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions liteiclink/serwb/efinixserdes.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def __init__(self, data, tx_p, tx_n, clk, clk4x, platform):
"sig" : _data,
"location" : io_pad,
"size" : 8,
"slow_clk" : clk,
"fast_clk" : clk4x,
"slow_clk" : ClockSignal(clk),
"fast_clk" : ClockSignal(clk4x),
"half_rate" : "1",
"oe_pin" : _oe,
"rst_pin" : _rst,
Expand Down Expand Up @@ -158,8 +158,8 @@ def __init__(self, rx_p, rx_n, data, clk, clk4x, platform, static_delay_taps=0):
"sig" : _data,
"location" : io_pad,
"size" : 8,
"slow_clk" : clk,
"fast_clk" : clk4x,
"slow_clk" : ClockSignal(clk),
"fast_clk" : ClockSignal(clk4x),
"half_rate" : "1",
"ena_pin" : _ena,
"rst_pin" : _rst,
Expand Down

0 comments on commit 90ecf70

Please sign in to comment.