From aea3ffab675729917e0851182071a751d4e3439c Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Mon, 27 Jul 2020 16:41:29 +0200 Subject: [PATCH] Fix wrong T1 signal --- gram/phy/ecp5ddrphy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gram/phy/ecp5ddrphy.py b/gram/phy/ecp5ddrphy.py index 73cd997..6d579c6 100644 --- a/gram/phy/ecp5ddrphy.py +++ b/gram/phy/ecp5ddrphy.py @@ -341,7 +341,7 @@ class ECP5DDRPHY(Peripheral, Elaboratable): i_SCLK=ClockSignal(), i_DQSW=dqsw, i_T0=~(dqs_oe | dqs_postamble), - i_T1=~(dqs_oe | dqs_postamble), + i_T1=~(dqs_oe | dqs_preamble), o_Q=dqs_oe_n), Instance("BB", i_I=dqs, -- 2.30.2