diff --git a/trashernet/trashernet_udpprot.vhd b/trashernet/trashernet_udpprot.vhd index 8012093..43d4cf6 100644 --- a/trashernet/trashernet_udpprot.vhd +++ b/trashernet/trashernet_udpprot.vhd @@ -110,7 +110,7 @@ begin state <= WAITDONE when (not udp_in.tx_en); when WAITDONE => - if udp_out.tx_err_stb or udp_out.tx_ok_stb or udp_out.tx_data_ack then + if udp_out.tx_err_stb or udp_out.tx_ok_stb then state <= IDLE; tx_sel <= udpprot_tx_in'left; -- To avoid arbitration errors, always select the highest priority one by default end if;