Skip to content

Commit

Permalink
mapping the TTL_G in UdpEngineWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Sep 10, 2024
1 parent 01fd4d7 commit 38e9a77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ethernet/IpV4Engine/rtl/IpV4Engine.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ entity IpV4Engine is
PROTOCOL_G : Slv8Array := (0 => UDP_C); -- Default to UDP protocol
CLIENT_SIZE_G : positive := 1; -- Sets the number of attached client engines
CLK_FREQ_G : real := 156.25E+06; -- In units of Hz
TTL_G : slv(7 downto 0) := x"20";
TTL_G : slv(7 downto 0) := x"20"; -- IPv4's Time-To-Live (TTL)
IGMP_G : boolean := false;
IGMP_GRP_SIZE : positive := 1);
port (
Expand Down
1 change: 1 addition & 0 deletions ethernet/UdpEngine/rtl/UdpEngineWrapper.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ begin
PROTOCOL_G => (0 => UDP_C),
CLIENT_SIZE_G => CLIENT_SIZE_G,
CLK_FREQ_G => CLK_FREQ_G,
TTL_G => TTL_G,
IGMP_G => IGMP_G,
IGMP_GRP_SIZE => IGMP_GRP_SIZE)
port map (
Expand Down

0 comments on commit 38e9a77

Please sign in to comment.