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

Use internal SCLK in aduh_quad_scope.

parent 5165d381
No related branches found
No related tags found
No related merge requests found
......@@ -39,8 +39,7 @@ ENTITY aduh_quad_scope IS
g_ai : t_c_aduh_dd_ai := c_aduh_dd_ai
);
PORT (
-- Sample clock
SCLK : IN STD_LOGIC := '0'; -- sample clk, use only for simulation purposes
DCLK : IN STD_LOGIC := '0'; -- digital processing clk
-- Streaming samples (can be from ADU or from internal WG)
sp_sosi_arr : IN t_dp_sosi_arr(0 TO g_ai.nof_sp-1) -- = [0:3] = Signal Paths [A,B,C,D]
......@@ -65,14 +64,15 @@ BEGIN
u_dp_scope : ENTITY dp_lib.dp_wideband_sp_arr_scope
GENERIC MAP (
g_sim => g_sim,
g_use_sclk => FALSE,
g_nof_streams => g_ai.nof_sp,
g_wideband_factor => c_wideband_factor,
g_wideband_big_endian => FALSE,
g_dat_w => g_ai.port_w
)
PORT MAP (
-- Sample clock
SCLK => SCLK,
-- Digital processing clk
DCLK => DCLK,
-- Streaming samples
sp_sosi_arr => dp_sosi_arr -- = [3:0] = Signal Paths [D,C,B,A]
......
......@@ -296,8 +296,8 @@ BEGIN
g_ai => c_aduh_dd_ai
)
PORT MAP (
-- Sample clock
SCLK => SCLK,
-- Digital processing clock
DCLK => dp_clk,
-- Streaming samples (can be from ADU or from internal WG)
sp_sosi_arr => aduh_sosi_arr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment