Skip to content
Snippets Groups Projects
Commit e18a84a2 authored by Stefan Rauch's avatar Stefan Rauch
Browse files

Some fix to networking

parent 6991fe27
Branches
Tags
No related merge requests found
...@@ -407,6 +407,9 @@ begin ...@@ -407,6 +407,9 @@ begin
when IDLE => state_mux <= NONE; when IDLE => state_mux <= NONE;
if(valid_i = '1' AND silent_i = '0') then if(valid_i = '1' AND silent_i = '0') then
ETH_TX <= INIT_ETH_HDR (my_mac_i);
IPV4_TX <= INIT_IPV4_HDR(my_ip_i);
UDP_TX <= INIT_UDP_HDR (my_port_i);
ETH_TX.DST <= reply_MAC_i; ETH_TX.DST <= reply_MAC_i;
IPV4_TX.DST <= reply_IP_i; IPV4_TX.DST <= reply_IP_i;
IPV4_TX.TOL <= TOL_i; IPV4_TX.TOL <= TOL_i;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment