Skip to content
Snippets Groups Projects
Commit d824efee authored by Eric Kooistra's avatar Eric Kooistra
Browse files

c_network_eth_gap_len = 12 octets it the IPG = interpacket gap, minimum idle...

c_network_eth_gap_len = 12 octets it the IPG = interpacket gap, minimum idle period between transmission of Ethernet packets.
parent 8fd69f34
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ PACKAGE common_network_layers_pkg IS ...@@ -64,7 +64,7 @@ PACKAGE common_network_layers_pkg IS
CONSTANT c_network_eth_payload_jumbo_max : NATURAL := 9000; CONSTANT c_network_eth_payload_jumbo_max : NATURAL := 9000;
CONSTANT c_network_eth_crc_len : NATURAL := 4; CONSTANT c_network_eth_crc_len : NATURAL := 4;
CONSTANT c_network_eth_crc_w : NATURAL := c_network_eth_crc_len*c_8; CONSTANT c_network_eth_crc_w : NATURAL := c_network_eth_crc_len*c_8;
CONSTANT c_network_eth_gap_len : NATURAL := 12; CONSTANT c_network_eth_gap_len : NATURAL := 12; -- IPG = interpacket gap, minimum idle period between transmission of Ethernet packets
CONSTANT c_network_eth_frame_max : NATURAL := c_network_eth_header_len + c_network_eth_payload_max + c_network_eth_crc_len; -- = 1518 CONSTANT c_network_eth_frame_max : NATURAL := c_network_eth_header_len + c_network_eth_payload_max + c_network_eth_crc_len; -- = 1518
CONSTANT c_network_eth_frame_jumbo_max : NATURAL := c_network_eth_header_len + c_network_eth_payload_jumbo_max + c_network_eth_crc_len; -- = 9018 CONSTANT c_network_eth_frame_jumbo_max : NATURAL := c_network_eth_header_len + c_network_eth_payload_jumbo_max + c_network_eth_crc_len; -- = 9018
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment