Skip to content

Commit

Permalink
soc/cores/hyperbus: Reduce END delay.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Aug 29, 2024
1 parent 3bde3e9 commit d428c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/cores/hyperbus.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ def __init__(self, phy, latency=7, latency_mode="fixed", clk_ratio="4:1", with_b
)
fsm.act("END",
NextValue(cycles, cycles + 1),
If(cycles == 8, # FIXME.
If(cycles == 2, # FIXME.
NextState("IDLE")
)
)
Expand Down

0 comments on commit d428c94

Please sign in to comment.