Skip to content
Snippets Groups Projects
Commit d8b2b192 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk
Browse files

switch-optimization: endpoint_pkg: add new CRC generics to xwr_endpoint

parent 6ae74782
Branches
Tags
No related merge requests found
......@@ -71,7 +71,9 @@ package endpoint_pkg is
g_with_rtu : boolean := false;
g_with_leds : boolean := false;
g_with_dmtd : boolean := false;
g_with_packet_injection : boolean := false);
g_with_packet_injection : boolean := false;
g_use_new_rxcrc : boolean := false;
g_use_new_txcrc : boolean := false);
port (
clk_ref_i : in std_logic;
clk_sys_i : in std_logic;
......
......@@ -60,7 +60,9 @@ entity xwr_endpoint is
g_with_rtu : boolean := true;
g_with_leds : boolean := true;
g_with_dmtd : boolean := true;
g_with_packet_injection : boolean := false
g_with_packet_injection : boolean := false;
g_use_new_rxcrc : boolean := false;
g_use_new_txcrc : boolean := false
);
port (
......@@ -269,7 +271,9 @@ begin
g_with_rtu => g_with_rtu,
g_with_leds => g_with_leds,
g_with_dmtd => g_with_dmtd,
g_with_packet_injection => g_with_packet_injection)
g_with_packet_injection => g_with_packet_injection,
g_use_new_rxcrc => g_use_new_rxcrc,
g_use_new_txcrc => g_use_new_txcrc)
port map (
clk_ref_i => clk_ref_i,
clk_sys_i => clk_sys_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