From 4a39c3d638081f3947432f6a8f8c0cbfd7a6117c Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Sun, 23 Jan 2022 16:31:20 +0100 Subject: [PATCH] phy: Notify that the end-of-packet has been accepted --- trashernet/trashernet_phy.vhd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/trashernet/trashernet_phy.vhd b/trashernet/trashernet_phy.vhd index 9116f33..91ad10b 100644 --- a/trashernet/trashernet_phy.vhd +++ b/trashernet/trashernet_phy.vhd @@ -293,8 +293,9 @@ begin tx_state <= IPG; tx_mode <= OFF; - bit_cnt <= BIT_CNT_MAX_IPG; - bit_stage <= '0'; + bit_cnt <= BIT_CNT_MAX_IPG; + bit_stage <= '0'; + phy_out.tx_data_ack <= '1'; -- Notify that the end-of-packet has been accepted end procedure transmit_ipg; procedure transmit_nlp is