Skip to content

Commit

Permalink
syncing to 1GbE-RUDP-example branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Dec 20, 2023
1 parent ea762be commit 75012d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion firmware/common/rtl/Rudp.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ architecture mapping of Rudp is
signal ethClk : sl;
signal ethRst : sl;
signal extReset : sl;
signal refClk : sl;

begin

Expand Down Expand Up @@ -172,7 +173,7 @@ begin
DURATION_G => 156250000)
port map (
arst => extRst,
clk => ethClk,
clk => refClk,
rstOut => extReset);

GEN_10G : if (BUILD_10G_G = true) generate
Expand Down Expand Up @@ -215,6 +216,7 @@ begin
gtTxN(0) => ethTxN,
gtRxP(0) => ethRxP,
gtRxN(0) => ethRxN);
refClk <= ethClk;
end generate;

GEN_1G : if (BUILD_10G_G = false) generate
Expand Down Expand Up @@ -255,6 +257,7 @@ begin
phyClk => ethClk,
phyRst => ethRst,
phyReady(0) => phyReady,
refClkOut => refClk,
-- MGT Clock Port
gtClkP => ethClkP,
gtClkN => ethClkN,
Expand Down

0 comments on commit 75012d3

Please sign in to comment.