From 9e5b958f467b3b4ddebc44c4c6ba46460105d47e Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Sat, 28 Aug 2021 14:24:28 +0200 Subject: [PATCH] phy: rx: Reset transition analyzer state at the EOT --- trashernet/trashernet_phy.vhd | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/trashernet/trashernet_phy.vhd b/trashernet/trashernet_phy.vhd index ddcb46d..7439b54 100644 --- a/trashernet/trashernet_phy.vhd +++ b/trashernet/trashernet_phy.vhd @@ -160,6 +160,10 @@ begin last_transition <= LONG; end case; end if; + + if (not transition_activity) then + last_transition <= LONG; + end if; end if; end process transition_analyzer;