From 4e39e3b371416a261cdedffcfa79dd1d77b1c0ea Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Sat, 22 Jan 2022 20:48:49 +0100 Subject: [PATCH] phy: Do not report tx_active when providing NLPs --- trashernet/trashernet_phy.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trashernet/trashernet_phy.vhd b/trashernet/trashernet_phy.vhd index e467c2f..524c4ab 100644 --- a/trashernet/trashernet_phy.vhd +++ b/trashernet/trashernet_phy.vhd @@ -380,7 +380,7 @@ begin end case; end if; end process tx_main; - phy_out.tx_active <= '1' when tx_state /= IDLE else '0'; + phy_out.tx_active <= '1' when (tx_state /= IDLE and tx_state /= NLP) else '0'; driver : process(clk, rst) is begin