URL
https://opencores.org/ocsvn/udp_ip_stack/udp_ip_stack/trunk
Subversion Repositories udp_ip_stack
Compare Revisions
- This comparison shows the changes necessary to convert path
/udp_ip_stack/trunk/rtl/vhdl
- from Rev 16 to Rev 17
- ↔ Reverse comparison
Rev 16 → Rev 17
/UDP_TX.vhd
211,7 → 211,7
end if; |
|
when SEND_USER_DATA => |
udp_tx_data_out_ready <= '1'; -- in this state, we are always ready to accept user data for tx |
udp_tx_data_out_ready <= ip_tx_data_out_ready; -- in this state, we can accept user data if IP TX rdy |
if ip_tx_data_out_ready = '1' then |
if udp_txi.data.data_out_valid = '1' or tx_count = x"000" then |
-- only increment if ready and valid has been subsequently established, otherwise data count moves on too fast |