From d428c943864e4d21ce98f1bb07a3ef6e2b4387b8 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 29 Aug 2024 19:39:56 +0200 Subject: [PATCH] soc/cores/hyperbus: Reduce END delay. --- litex/soc/cores/hyperbus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/hyperbus.py b/litex/soc/cores/hyperbus.py index 56bb3f95dc..5f68ad0361 100644 --- a/litex/soc/cores/hyperbus.py +++ b/litex/soc/cores/hyperbus.py @@ -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") ) )